hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/hid/hid-plantronics.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * Plantronics USB HID Driver
34 *
....@@ -6,10 +7,6 @@
67 */
78
89 /*
9
- * This program is free software; you can redistribute it and/or modify it
10
- * under the terms of the GNU General Public License as published by the Free
11
- * Software Foundation; either version 2 of the License, or (at your option)
12
- * any later version.
1310 */
1411
1512 #include "hid-ids.h"
....@@ -202,8 +199,17 @@
202199
203200 static const struct hid_device_id plantronics_devices[] = {
204201 { HID_USB_DEVICE(USB_VENDOR_ID_PLANTRONICS,
202
+ USB_DEVICE_ID_PLANTRONICS_BLACKWIRE_3210_SERIES),
203
+ .driver_data = PLT_QUIRK_DOUBLE_VOLUME_KEYS },
204
+ { HID_USB_DEVICE(USB_VENDOR_ID_PLANTRONICS,
205205 USB_DEVICE_ID_PLANTRONICS_BLACKWIRE_3220_SERIES),
206206 .driver_data = PLT_QUIRK_DOUBLE_VOLUME_KEYS },
207
+ { HID_USB_DEVICE(USB_VENDOR_ID_PLANTRONICS,
208
+ USB_DEVICE_ID_PLANTRONICS_BLACKWIRE_3215_SERIES),
209
+ .driver_data = PLT_QUIRK_DOUBLE_VOLUME_KEYS },
210
+ { HID_USB_DEVICE(USB_VENDOR_ID_PLANTRONICS,
211
+ USB_DEVICE_ID_PLANTRONICS_BLACKWIRE_3225_SERIES),
212
+ .driver_data = PLT_QUIRK_DOUBLE_VOLUME_KEYS },
207213 { HID_USB_DEVICE(USB_VENDOR_ID_PLANTRONICS, HID_ANY_ID) },
208214 { }
209215 };