fwupd/plugins/ccgx/fu-plugin-ccgx.c
Richard Hughes c81b755872 Be more strict for custom quirk keys
Rather than trying to guess typos, force each plugin to register the quirk
keys it supports, so we can show a sensible warning if required at startup on
the console.
2021-03-03 08:30:34 +00:00

30 lines
930 B
C

/*
* Copyright (C) 2020 Cypress Semiconductor Corporation.
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#include "config.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, NULL, FU_TYPE_CCGX_FIRMWARE);
fu_plugin_add_firmware_gtype (plugin, NULL, 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);
fu_plugin_add_possible_quirk_key (plugin, "CcgxFlashRowSize");
fu_plugin_add_possible_quirk_key (plugin, "CcgxFlashSize");
fu_plugin_add_possible_quirk_key (plugin, "CcgxImageKind");
}