diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2021-05-18 10:45:57 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2021-05-18 12:24:24 +0200 |
commit | 07a35edc59d1f461a02c83235d0fe63b4c313920 (patch) | |
tree | ab76f8558c3bd163ec952bf3814089d13de4a111 /sound/firewire/oxfw/oxfw.h | |
parent | ALSA: oxfw: code refactoring for wrong_dbs quirk (diff) | |
download | linux-07a35edc59d1f461a02c83235d0fe63b4c313920.tar.xz linux-07a35edc59d1f461a02c83235d0fe63b4c313920.zip |
ALSA: oxfw: add quirk flag for blocking transmission method
Stanton SCS.1m and Apogee Duet FireWire use blocking transmission method
unlike the other models.
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Link: https://lore.kernel.org/r/20210518084557.102681-12-o-takashi@sakamocchi.jp
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to '')
-rw-r--r-- | sound/firewire/oxfw/oxfw.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/firewire/oxfw/oxfw.h b/sound/firewire/oxfw/oxfw.h index 4002998d41e8..853135b5002d 100644 --- a/sound/firewire/oxfw/oxfw.h +++ b/sound/firewire/oxfw/oxfw.h @@ -38,6 +38,8 @@ enum snd_oxfw_quirk { SND_OXFW_QUIRK_JUMBO_PAYLOAD = 0x01, // The dbs field of CIP header in tx packet is wrong. SND_OXFW_QUIRK_WRONG_DBS = 0x02, + // Blocking transmission mode is used. + SND_OXFW_QUIRK_BLOCKING_TRANSMISSION = 0x04, }; /* This is an arbitrary number for convinience. */ |