Skip to content

Commit 1a2d30a

Browse files
lodewillemsJiri Kosina
authored andcommitted
HID: Kysona: Add support for VXE Dragonfly R1 Pro
Apparently this same protocol is used by more mice from different brands. This patch adds support for the VXE Dragonfly R1 Pro. Tested-by: Dominykas Svetikas <dominykas@svetikas.lt> Signed-off-by: Lode Willems <me@lodewillems.com> Signed-off-by: Jiri Kosina <jkosina@suse.com>
1 parent 743677a commit 1a2d30a

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

drivers/hid/hid-ids.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1474,6 +1474,10 @@
14741474
#define USB_VENDOR_ID_VTL 0x0306
14751475
#define USB_DEVICE_ID_VTL_MULTITOUCH_FF3F 0xff3f
14761476

1477+
#define USB_VENDOR_ID_VXE 0x3554
1478+
#define USB_DEVICE_ID_VXE_DRAGONFLY_R1_PRO_DONGLE 0xf58a
1479+
#define USB_DEVICE_ID_VXE_DRAGONFLY_R1_PRO_WIRED 0xf58c
1480+
14771481
#define USB_VENDOR_ID_WACOM 0x056a
14781482
#define USB_DEVICE_ID_WACOM_GRAPHIRE_BLUETOOTH 0x81
14791483
#define USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH 0x00BD

drivers/hid/hid-kysona.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,8 @@ static void kysona_remove(struct hid_device *hdev)
272272
static const struct hid_device_id kysona_devices[] = {
273273
{ HID_USB_DEVICE(USB_VENDOR_ID_KYSONA, USB_DEVICE_ID_KYSONA_M600_DONGLE) },
274274
{ HID_USB_DEVICE(USB_VENDOR_ID_KYSONA, USB_DEVICE_ID_KYSONA_M600_WIRED) },
275+
{ HID_USB_DEVICE(USB_VENDOR_ID_VXE, USB_DEVICE_ID_VXE_DRAGONFLY_R1_PRO_DONGLE) },
276+
{ HID_USB_DEVICE(USB_VENDOR_ID_VXE, USB_DEVICE_ID_VXE_DRAGONFLY_R1_PRO_WIRED) },
275277
{ }
276278
};
277279
MODULE_DEVICE_TABLE(hid, kysona_devices);

0 commit comments

Comments
 (0)