aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLumi Lee <[email protected]>2020-11-30 11:11:15 +0800
committerMark Brown <[email protected]>2020-11-30 12:52:48 +0000
commitbbe1f69dce94089943cc407a88325ae7e851d49c (patch)
tree26c6a75b2741dcacc87f62c7562bdc0e7d48cabb
parentaa4cb898b80a28a610e26d1513e6dd42d995c225 (diff)
ASoC: mediatek: btcvsd fix tx stream assign
Fix tx/rx stream assign in write. Write should use tx instead of rx. Signed-off-by: Lumi Lee <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mark Brown <[email protected]>
-rw-r--r--sound/soc/mediatek/common/mtk-btcvsd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/mediatek/common/mtk-btcvsd.c b/sound/soc/mediatek/common/mtk-btcvsd.c
index 668fef3e319a..a554c57b6460 100644
--- a/sound/soc/mediatek/common/mtk-btcvsd.c
+++ b/sound/soc/mediatek/common/mtk-btcvsd.c
@@ -808,7 +808,7 @@ static ssize_t mtk_btcvsd_snd_write(struct mtk_btcvsd_snd *bt,
spin_unlock_irqrestore(&bt->tx_lock, flags);
if (!avail) {
- int ret = wait_for_bt_irq(bt, bt->rx);
+ int ret = wait_for_bt_irq(bt, bt->tx);
if (ret)
return written_size;