ASoC: amd: Enable interrupt in dma_open
Fixes interrupt enable condition check with which now interrupt gets enabled in dma_open. Prior to this patch it was getting enabled in runtime_resume only. Signed-off-by: Akshu Agrawal <akshu.agrawal@amd.com> Link: https://lore.kernel.org/r/20200630183754.20641-1-akshu.agrawal@amd.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
88ba5f4a64
commit
820d7fcb23
|
@ -238,7 +238,7 @@ static int acp3x_dma_open(struct snd_soc_component *component,
|
|||
}
|
||||
|
||||
if (!adata->play_stream && !adata->capture_stream &&
|
||||
adata->i2ssp_play_stream && !adata->i2ssp_capture_stream)
|
||||
!adata->i2ssp_play_stream && !adata->i2ssp_capture_stream)
|
||||
rv_writel(1, adata->acp3x_base + mmACP_EXTERNAL_INTR_ENB);
|
||||
|
||||
i2s_data->acp3x_base = adata->acp3x_base;
|
||||
|
|
Loading…
Reference in New Issue