.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * HID driver for Saitek devices. |
---|
3 | 4 | * |
---|
.. | .. |
---|
11 | 12 | * Fixes the mode button which cycles through three constantly pressed |
---|
12 | 13 | * buttons. All three press events are mapped to one button and the |
---|
13 | 14 | * missing release event is generated immediately. |
---|
14 | | - * |
---|
15 | 15 | */ |
---|
16 | 16 | |
---|
17 | 17 | /* |
---|
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. |
---|
22 | 18 | */ |
---|
23 | 19 | |
---|
24 | 20 | #include <linux/device.h> |
---|
.. | .. |
---|
191 | 187 | .driver_data = SAITEK_RELEASE_MODE_RAT7 }, |
---|
192 | 188 | { HID_USB_DEVICE(USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_MMO7), |
---|
193 | 189 | .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 }, |
---|
194 | 192 | { } |
---|
195 | 193 | }; |
---|
196 | 194 | |
---|