diff options
Diffstat (limited to 'sound/firewire/bebob/bebob_stream.c')
-rw-r--r-- | sound/firewire/bebob/bebob_stream.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/firewire/bebob/bebob_stream.c b/sound/firewire/bebob/bebob_stream.c index 2695b7899410..3e74d9b1e357 100644 --- a/sound/firewire/bebob/bebob_stream.c +++ b/sound/firewire/bebob/bebob_stream.c | |||
@@ -457,6 +457,13 @@ int snd_bebob_stream_init_duplex(struct snd_bebob *bebob) | |||
457 | /* See comments in next function */ | 457 | /* See comments in next function */ |
458 | init_completion(&bebob->bus_reset); | 458 | init_completion(&bebob->bus_reset); |
459 | bebob->tx_stream.flags |= CIP_SKIP_INIT_DBC_CHECK; | 459 | bebob->tx_stream.flags |= CIP_SKIP_INIT_DBC_CHECK; |
460 | /* | ||
461 | * At high sampling rate, M-Audio special firmware transmits empty | ||
462 | * packet with the value of dbc incremented by 8 but the others are | ||
463 | * valid to IEC 61883-1. | ||
464 | */ | ||
465 | if (bebob->maudio_special_quirk) | ||
466 | bebob->tx_stream.flags |= CIP_EMPTY_HAS_WRONG_DBC; | ||
460 | 467 | ||
461 | err = amdtp_stream_init(&bebob->rx_stream, bebob->unit, | 468 | err = amdtp_stream_init(&bebob->rx_stream, bebob->unit, |
462 | AMDTP_OUT_STREAM, CIP_BLOCKING); | 469 | AMDTP_OUT_STREAM, CIP_BLOCKING); |