diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2006-01-18 15:44:53 +0100 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-03-22 10:27:10 +0100 |
commit | 05422575d4bc5d1a6aff22dfa9a0b5bc701ccf6f (patch) | |
tree | 539acb98fe1d679f295944e3c0c950ff741a40ab /sound/usb | |
parent | 3f72a30ccfd5054c01fc3bb0d37241df5380a54c (diff) |
[ALSA] usb-audio: fix number of G-70 ports
Modules: USB generic driver
The G-70 has one MIDI port in each direction, no two.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Diffstat (limited to 'sound/usb')
-rw-r--r-- | sound/usb/usbquirks.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/usb/usbquirks.h b/sound/usb/usbquirks.h index 42079dadbe8c..edb88871ff4a 100644 --- a/sound/usb/usbquirks.h +++ b/sound/usb/usbquirks.h @@ -1100,8 +1100,8 @@ YAMAHA_DEVICE(0x7010, "UB99"), .ifnum = 0, .type = QUIRK_MIDI_FIXED_ENDPOINT, .data = & (const struct snd_usb_midi_endpoint_info) { - .out_cables = 0x0003, - .in_cables = 0x0003 + .out_cables = 0x0001, + .in_cables = 0x0001 } } }, |