mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-12 19:34:28 +00:00

The original code was written by Dell for the dell-dock plugin, but it's exactly the same code and NVM format for Intel reference hardware.
23 lines
424 B
C
23 lines
424 B
C
/*
|
|
* Copyright (C) 2022 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "fu-intel-usb4-device.h"
|
|
|
|
static void
|
|
fu_plugin_intel_usb4_init(FuPlugin *plugin)
|
|
{
|
|
fu_plugin_add_device_gtype(plugin, FU_TYPE_INTEL_USB4_DEVICE);
|
|
}
|
|
|
|
void
|
|
fu_plugin_init_vfuncs(FuPluginVfuncs *vfuncs)
|
|
{
|
|
vfuncs->build_hash = FU_BUILD_HASH;
|
|
vfuncs->init = fu_plugin_intel_usb4_init;
|
|
}
|