mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-29 09:59:01 +00:00
24 lines
543 B
C
24 lines
543 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-rts54hid-device.h"
|
|
#include "fu-rts54hid-module.h"
|
|
|
|
void
|
|
fu_plugin_init (FuPlugin *plugin)
|
|
{
|
|
fu_plugin_set_build_hash (plugin, FU_BUILD_HASH);
|
|
fu_plugin_add_rule (plugin, FU_PLUGIN_RULE_SUPPORTS_PROTOCOL, "com.realtek.rts54");
|
|
fu_plugin_set_device_gtype (plugin, FU_TYPE_RTS54HID_DEVICE);
|
|
|
|
/* register the custom types */
|
|
g_type_ensure (FU_TYPE_RTS54HID_MODULE);
|
|
}
|