ALSA: usb-audio: correct M-Audio C400 clock source quirk

Taking another look at the C400 descriptors, I see now that there is
a clock selector (0x80) for this device.
Right now, the clock source points to the internal clock (0x81), which
is also valid. When the external clock source (0x82) is selected in the
mixer, and the rates mismatch (if it's free-running it is fixed to
48KHz), xruns will occur.

Set the clock ID to the clock selector unit (0x81), which then
allows the validation code to function correctly.

Signed-off-by: Eldad Zack <eldad@fogrefinery.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>

authored by Eldad Zack and committed by Takashi Iwai 2aad272b b98ae272

+2 -2
+2 -2
sound/usb/quirks-table.h
··· 2289 .rate_table = (unsigned int[]) { 2290 44100, 48000, 88200, 96000 2291 }, 2292 - .clock = 0x81, 2293 } 2294 }, 2295 /* Capture */ ··· 2315 .rate_table = (unsigned int[]) { 2316 44100, 48000, 88200, 96000 2317 }, 2318 - .clock = 0x81, 2319 } 2320 }, 2321 /* MIDI */
··· 2289 .rate_table = (unsigned int[]) { 2290 44100, 48000, 88200, 96000 2291 }, 2292 + .clock = 0x80, 2293 } 2294 }, 2295 /* Capture */ ··· 2315 .rate_table = (unsigned int[]) { 2316 44100, 48000, 88200, 96000 2317 }, 2318 + .clock = 0x80, 2319 } 2320 }, 2321 /* MIDI */