hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/hid/hid-saitek.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * HID driver for Saitek devices.
34 *
....@@ -11,14 +12,9 @@
1112 * Fixes the mode button which cycles through three constantly pressed
1213 * buttons. All three press events are mapped to one button and the
1314 * missing release event is generated immediately.
14
- *
1515 */
1616
1717 /*
18
- * This program is free software; you can redistribute it and/or modify it
19
- * under the terms of the GNU General Public License as published by the Free
20
- * Software Foundation; either version 2 of the License, or (at your option)
21
- * any later version.
2218 */
2319
2420 #include <linux/device.h>
....@@ -191,6 +187,8 @@
191187 .driver_data = SAITEK_RELEASE_MODE_RAT7 },
192188 { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_MMO7),
193189 .driver_data = SAITEK_RELEASE_MODE_MMO7 },
190
+ { HID_USB_DEVICE(USB_VENDOR_ID_MADCATZ, USB_DEVICE_ID_MADCATZ_MMO7),
191
+ .driver_data = SAITEK_RELEASE_MODE_MMO7 },
194192 { }
195193 };
196194