mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-23 02:45:14 +00:00

Added support for Stratus-series gamepads and dongles. Signed-off-by: Denis Pynkin <denis.pynkin@collabora.com>
24 lines
557 B
C
24 lines
557 B
C
/*
|
|
* Copyright (C) 2016 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#include "fu-steelseries-device.h"
|
|
#include "fu-steelseries-gamepad.h"
|
|
|
|
void
|
|
fu_plugin_init(FuPlugin *plugin)
|
|
{
|
|
FuContext *ctx = fu_plugin_get_context(plugin);
|
|
|
|
fu_plugin_set_build_hash(plugin, FU_BUILD_HASH);
|
|
fu_plugin_add_device_gtype(plugin, FU_TYPE_STEELSERIES_DEVICE);
|
|
fu_plugin_add_device_gtype(plugin, FU_TYPE_STEELSERIES_GAMEPAD);
|
|
fu_context_add_quirk_key(ctx, "SteelSeriesDeviceKind");
|
|
}
|