diff options
Diffstat (limited to 'sound/usb/caiaq/device.c')
-rw-r--r-- | sound/usb/caiaq/device.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sound/usb/caiaq/device.c b/sound/usb/caiaq/device.c index 45bc4a2dc6f0..3eb605bd9503 100644 --- a/sound/usb/caiaq/device.c +++ b/sound/usb/caiaq/device.c | |||
@@ -50,7 +50,8 @@ MODULE_SUPPORTED_DEVICE("{{Native Instruments, RigKontrol2}," | |||
50 | "{Native Instruments, Session I/O}," | 50 | "{Native Instruments, Session I/O}," |
51 | "{Native Instruments, GuitarRig mobile}" | 51 | "{Native Instruments, GuitarRig mobile}" |
52 | "{Native Instruments, Traktor Kontrol X1}" | 52 | "{Native Instruments, Traktor Kontrol X1}" |
53 | "{Native Instruments, Traktor Kontrol S4}"); | 53 | "{Native Instruments, Traktor Kontrol S4}" |
54 | "{Native Instruments, Maschine Controller}"); | ||
54 | 55 | ||
55 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-max */ | 56 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-max */ |
56 | static char* id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* Id for this card */ | 57 | static char* id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* Id for this card */ |
@@ -146,6 +147,11 @@ static struct usb_device_id snd_usb_id_table[] = { | |||
146 | .idVendor = USB_VID_NATIVEINSTRUMENTS, | 147 | .idVendor = USB_VID_NATIVEINSTRUMENTS, |
147 | .idProduct = USB_PID_TRAKTORAUDIO2 | 148 | .idProduct = USB_PID_TRAKTORAUDIO2 |
148 | }, | 149 | }, |
150 | { | ||
151 | .match_flags = USB_DEVICE_ID_MATCH_DEVICE, | ||
152 | .idVendor = USB_VID_NATIVEINSTRUMENTS, | ||
153 | .idProduct = USB_PID_MASCHINECONTROLLER | ||
154 | }, | ||
149 | { /* terminator */ } | 155 | { /* terminator */ } |
150 | }; | 156 | }; |
151 | 157 | ||