mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-14 10:17:52 +00:00
28 lines
769 B
C
28 lines
769 B
C
/*
|
|
* Copyright (C) 2020 Cypress Semiconductor Corporation.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "fu-hash.h"
|
|
#include "fu-plugin-vfuncs.h"
|
|
|
|
#include "fu-ccgx-firmware.h"
|
|
#include "fu-ccgx-hid-device.h"
|
|
#include "fu-ccgx-hpi-device.h"
|
|
#include "fu-ccgx-dmc-device.h"
|
|
#include "fu-ccgx-dmc-firmware.h"
|
|
|
|
void
|
|
fu_plugin_init (FuPlugin *plugin)
|
|
{
|
|
fu_plugin_set_build_hash (plugin, FU_BUILD_HASH);
|
|
fu_plugin_add_firmware_gtype (plugin, "ccgx", FU_TYPE_CCGX_FIRMWARE);
|
|
fu_plugin_add_firmware_gtype (plugin, "ccgx", FU_TYPE_CCGX_DMC_FIRMWARE);
|
|
fu_plugin_set_device_gtype (plugin, FU_TYPE_CCGX_HID_DEVICE);
|
|
fu_plugin_set_device_gtype (plugin, FU_TYPE_CCGX_HPI_DEVICE);
|
|
fu_plugin_set_device_gtype (plugin, FU_TYPE_CCGX_DMC_DEVICE);
|
|
}
|