mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
ALSA: usb-audio: fix Amanero Combo384 quirk on big-endian hosts
Add missing endianness conversion when using the USB device-descriptor
bcdDevice field when applying the Amanero Combo384 (endianness!) quirk.
Fixes: 3eff682d76
("ALSA: usb-audio: Support both DSD LE/BE Amanero firmware versions")
Cc: Jussi Laako <jussi@sonarnerd.net>
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
2ea659a9ef
commit
f83914fdfc
@ -1364,7 +1364,7 @@ u64 snd_usb_interface_dsd_format_quirks(struct snd_usb_audio *chip,
|
|||||||
/* Amanero Combo384 USB interface with native DSD support */
|
/* Amanero Combo384 USB interface with native DSD support */
|
||||||
case USB_ID(0x16d0, 0x071a):
|
case USB_ID(0x16d0, 0x071a):
|
||||||
if (fp->altsetting == 2) {
|
if (fp->altsetting == 2) {
|
||||||
switch (chip->dev->descriptor.bcdDevice) {
|
switch (le16_to_cpu(chip->dev->descriptor.bcdDevice)) {
|
||||||
case 0x199:
|
case 0x199:
|
||||||
return SNDRV_PCM_FMTBIT_DSD_U32_LE;
|
return SNDRV_PCM_FMTBIT_DSD_U32_LE;
|
||||||
case 0x19b:
|
case 0x19b:
|
||||||
|
Loading…
Reference in New Issue
Block a user