fwupd/plugins/wacom-raw/fu-plugin-wacom-raw.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

27 lines
723 B
C

/*
* Copyright (C) 2018 Richard Hughes <richard@hughsie.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#include "config.h"
#include "fu-plugin-vfuncs.h"
#include "fu-wacom-aes-device.h"
#include "fu-wacom-emr-device.h"
#include "fu-wacom-common.h"
void
fu_plugin_init (FuPlugin *plugin)
{
fu_plugin_set_build_hash (plugin, FU_BUILD_HASH);
fu_plugin_add_udev_subsystem (plugin, "hidraw");
fu_plugin_add_possible_quirk_key (plugin, "WacomI2cFlashBlockSize");
fu_plugin_add_possible_quirk_key (plugin, "WacomI2cFlashBaseAddr");
fu_plugin_add_possible_quirk_key (plugin, "WacomI2cFlashSize");
/* register the custom types */
g_type_ensure (FU_TYPE_WACOM_AES_DEVICE);
g_type_ensure (FU_TYPE_WACOM_EMR_DEVICE);
}