| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Plantronics USB HID Driver |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 6 | 7 | */ |
|---|
| 7 | 8 | |
|---|
| 8 | 9 | /* |
|---|
| 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. |
|---|
| 13 | 10 | */ |
|---|
| 14 | 11 | |
|---|
| 15 | 12 | #include "hid-ids.h" |
|---|
| .. | .. |
|---|
| 202 | 199 | |
|---|
| 203 | 200 | static const struct hid_device_id plantronics_devices[] = { |
|---|
| 204 | 201 | { 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, |
|---|
| 205 | 205 | USB_DEVICE_ID_PLANTRONICS_BLACKWIRE_3220_SERIES), |
|---|
| 206 | 206 | .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 }, |
|---|
| 207 | 213 | { HID_USB_DEVICE(USB_VENDOR_ID_PLANTRONICS, HID_ANY_ID) }, |
|---|
| 208 | 214 | { } |
|---|
| 209 | 215 | }; |
|---|