mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-05 06:51:40 +00:00
34 lines
708 B
C
34 lines
708 B
C
/*
|
|
* Copyright (C) 2022 Andrii Dushko <andrii.dushko@developex.net>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#include "fu-corsair-device.h"
|
|
|
|
static void
|
|
fu_plugin_corsair_init(FuPlugin *plugin)
|
|
{
|
|
fu_plugin_add_device_gtype(plugin, FU_TYPE_CORSAIR_DEVICE);
|
|
}
|
|
|
|
static void
|
|
fu_plugin_corsair_load(FuContext *ctx)
|
|
{
|
|
fu_context_add_quirk_key(ctx, "CorsairDeviceKind");
|
|
fu_context_add_quirk_key(ctx, "CorsairVendorInterfaceId");
|
|
fu_context_add_quirk_key(ctx, "CorsairSubdeviceId");
|
|
}
|
|
|
|
void
|
|
fu_plugin_init_vfuncs(FuPluginVfuncs *vfuncs)
|
|
{
|
|
vfuncs->build_hash = FU_BUILD_HASH;
|
|
vfuncs->load = fu_plugin_corsair_load;
|
|
vfuncs->init = fu_plugin_corsair_init;
|
|
}
|