diff options
author | Daniel Mack <daniel@caiaq.de> | 2010-09-01 04:23:46 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-02-14 11:10:45 -0500 |
commit | df8d81a32fa0309d64726fc62d83cb70adc899e8 (patch) | |
tree | d3d0ac60814b5413ecf39e780df1625a44cf2b9e /sound/usb/caiaq/device.c | |
parent | fea952e5cc23ea94b4677ca20774cdc3cea014e2 (diff) |
ALSA: snd-usb-caiaq: Add support for Traktor Audio 2
Signed-off-by: Daniel Mack <daniel@caiaq.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/caiaq/device.c')
-rw-r--r-- | sound/usb/caiaq/device.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sound/usb/caiaq/device.c b/sound/usb/caiaq/device.c index 6480c3283c05..45bc4a2dc6f0 100644 --- a/sound/usb/caiaq/device.c +++ b/sound/usb/caiaq/device.c | |||
@@ -46,6 +46,7 @@ MODULE_SUPPORTED_DEVICE("{{Native Instruments, RigKontrol2}," | |||
46 | "{Native Instruments, Audio 2 DJ}," | 46 | "{Native Instruments, Audio 2 DJ}," |
47 | "{Native Instruments, Audio 4 DJ}," | 47 | "{Native Instruments, Audio 4 DJ}," |
48 | "{Native Instruments, Audio 8 DJ}," | 48 | "{Native Instruments, Audio 8 DJ}," |
49 | "{Native Instruments, Traktor Audio 2}," | ||
49 | "{Native Instruments, Session I/O}," | 50 | "{Native Instruments, Session I/O}," |
50 | "{Native Instruments, GuitarRig mobile}" | 51 | "{Native Instruments, GuitarRig mobile}" |
51 | "{Native Instruments, Traktor Kontrol X1}" | 52 | "{Native Instruments, Traktor Kontrol X1}" |
@@ -140,6 +141,11 @@ static struct usb_device_id snd_usb_id_table[] = { | |||
140 | .idVendor = USB_VID_NATIVEINSTRUMENTS, | 141 | .idVendor = USB_VID_NATIVEINSTRUMENTS, |
141 | .idProduct = USB_PID_TRAKTORKONTROLS4 | 142 | .idProduct = USB_PID_TRAKTORKONTROLS4 |
142 | }, | 143 | }, |
144 | { | ||
145 | .match_flags = USB_DEVICE_ID_MATCH_DEVICE, | ||
146 | .idVendor = USB_VID_NATIVEINSTRUMENTS, | ||
147 | .idProduct = USB_PID_TRAKTORAUDIO2 | ||
148 | }, | ||
143 | { /* terminator */ } | 149 | { /* terminator */ } |
144 | }; | 150 | }; |
145 | 151 | ||