From 912323e5d1290cbee651270f65de338663012c9b Mon Sep 17 00:00:00 2001 From: Yangbo Lu Date: Mon, 30 Mar 2020 16:30:03 +0800 Subject: [PATCH] Revert "MLK-17442: ASoC: fsl: fix wrong usage of filter_data (part 1)" This reverts commit 8d4837f146cd14cf7041050ddec77b2a5c3f2f27. --- sound/soc/fsl/fsl_sai.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/sound/soc/fsl/fsl_sai.c +++ b/sound/soc/fsl/fsl_sai.c @@ -1519,8 +1519,8 @@ static int fsl_sai_probe(struct platform MCLK_DIR(index)); } - sai->dma_params_rx.chan_name = "rx"; - sai->dma_params_tx.chan_name = "tx"; + sai->dma_params_rx.filter_data = "rx"; + sai->dma_params_tx.filter_data = "tx"; sai->dma_params_rx.addr = res->start + FSL_SAI_RDR0; sai->dma_params_tx.addr = res->start + FSL_SAI_TDR0; sai->dma_params_rx.maxburst = FSL_SAI_MAXBURST_RX;