diff options
author | Eric Wong <normalperson@yhbt.net> | 2015-05-30 09:15:39 +0000 |
---|---|---|
committer | Sasha Levin <sasha.levin@oracle.com> | 2016-04-20 01:29:06 -0400 |
commit | 186b929c6b1e2db6310858f438b178cc2d00a876 (patch) | |
tree | ad8c0ee253ce424f3bac8caad97a852d8b9fc385 /sound | |
parent | 3c853788bdd85e73e9eb5bb8d3f40201a933ad93 (diff) | |
download | lwn-186b929c6b1e2db6310858f438b178cc2d00a876.tar.gz lwn-186b929c6b1e2db6310858f438b178cc2d00a876.zip |
ALSA: usb-audio: don't try to get Outlaw RR2150 sample rate
[ Upstream commit 2f80b2958abe5658000d5ad9b45a36ecf879666e ]
This quirk allows us to avoid the noisy:
current rate 0 is different from the runtime rate
message every time playback starts. While USB DAC in the RR2150
supports reading the sample rate, it never returns a sample rate
other than zero in my observation with common sample rates.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Cc: Joe Turner <joe@oampo.co.uk>
Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/usb/quirks.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c index 7da345b0cdaf..91d86dd1aedc 100644 --- a/sound/usb/quirks.c +++ b/sound/usb/quirks.c @@ -1120,6 +1120,7 @@ bool snd_usb_get_sample_rate_quirk(struct snd_usb_audio *chip) case USB_ID(0x045E, 0x0779): /* MS Lifecam HD-3000 */ case USB_ID(0x047F, 0xAA05): /* Plantronics DA45 */ case USB_ID(0x04D8, 0xFEEA): /* Benchmark DAC1 Pre */ + case USB_ID(0x074D, 0x3553): /* Outlaw RR2150 (Micronas UAC3553B) */ return true; } return false; |