Created
August 28, 2024 16:39
-
-
Save susman/55b4621a346f3367cd0a2800ef2ce761 to your computer and use it in GitHub Desktop.
TempoTec SONATA Linux kernel DSD quirks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/sound/usb/quirks.c | |
+++ b/sound/usb/quirks.c | |
@@ -1927,6 +1927,11 @@ | |
return SNDRV_PCM_FMTBIT_DSD_U32_BE; | |
break; | |
+ /* TempoTec SONATA Audio*/ | |
+ case USB_ID(0x22e1, 0xe203): | |
+ if (fp->altsetting == 4) | |
+ return SNDRV_PCM_FMTBIT_DSD_U32_BE; | |
+ break; | |
default: | |
break; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment