mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-16 11:44:38 +00:00

To do this, the plugins have to register the GType(s) they are using for firmware, along with a short 'id' that can be used in CLI scripts.
21 lines
499 B
C
21 lines
499 B
C
/*
|
|
* Copyright (C) 2019 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "fu-plugin-vfuncs.h"
|
|
|
|
#include "fu-synaptics-cxaudio-device.h"
|
|
#include "fu-synaptics-cxaudio-firmware.h"
|
|
|
|
void
|
|
fu_plugin_init (FuPlugin *plugin)
|
|
{
|
|
fu_plugin_set_build_hash (plugin, FU_BUILD_HASH);
|
|
fu_plugin_set_device_gtype (plugin, FU_TYPE_SYNAPTICS_CXAUDIO_DEVICE);
|
|
fu_plugin_add_firmware_gtype (plugin, "conexant", FU_TYPE_SYNAPTICS_CXAUDIO_FIRMWARE);
|
|
}
|