diff options
author | Takashi Iwai <tiwai@suse.de> | 2021-12-02 11:38:33 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2021-12-02 11:39:04 +0300 |
commit | 1e583aef12aa74afd37c1418255cc4b74e023236 (patch) | |
tree | 0eb24bc117e04e18df694b50f30e7bb2ec194159 /sound/usb/format.c | |
parent | ce9778b7a0272f7c7e5bc33f537380a5d2aed6c7 (diff) | |
download | linux-1e583aef12aa74afd37c1418255cc4b74e023236.tar.xz |
ALSA: usb-audio: Drop superfluous '0' in Presonus Studio 1810c's ID
The vendor ID of Presonus Studio 1810c had a superfluous '0' in its
USB ID. Drop it.
Fixes: 8dc5efe3d17c ("ALSA: usb-audio: Add support for Presonus Studio 1810c")
Link: https://lore.kernel.org/r/20211202083833.17784-1-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/format.c')
-rw-r--r-- | sound/usb/format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/usb/format.c b/sound/usb/format.c index f5e676a51b30..405dc0bf6678 100644 --- a/sound/usb/format.c +++ b/sound/usb/format.c @@ -375,7 +375,7 @@ static int parse_uac2_sample_rate_range(struct snd_usb_audio *chip, for (rate = min; rate <= max; rate += res) { /* Filter out invalid rates on Presonus Studio 1810c */ - if (chip->usb_id == USB_ID(0x0194f, 0x010c) && + if (chip->usb_id == USB_ID(0x194f, 0x010c) && !s1810c_valid_sample_rate(fp, rate)) goto skip_rate; |