aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/amd
diff options
context:
space:
mode:
authorVijendar Mukunda <Vijendar.Mukunda@amd.com>2020-05-19 22:34:20 +0800
committerMark Brown <broonie@kernel.org>2020-05-19 19:49:53 +0100
commitfdae433e5129c4ca87716de08fdcc0034d5aabc8 (patch)
tree0c87187723465bde393861a665c8a8215a55e07f /sound/soc/amd
parentMerge series "Add Renoir ACP driver" from Vijendar Mukunda <Vijendar.Mukunda@amd.com>: (diff)
downloadlinux-dev-fdae433e5129c4ca87716de08fdcc0034d5aabc8.tar.xz
linux-dev-fdae433e5129c4ca87716de08fdcc0034d5aabc8.zip
ASoC: amd: fix kernel warning
Removed unused variable from code to fix the kernel warning. Reported-by: kbuild test robot <lkp@intel.com> Signed-off-by: Vijendar Mukunda <Vijendar.Mukunda@amd.com> Link: https://lore.kernel.org/r/20200519143422.18255-1-Vijendar.Mukunda@amd.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/amd')
-rw-r--r--sound/soc/amd/renoir/acp3x-pdm-dma.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/soc/amd/renoir/acp3x-pdm-dma.c b/sound/soc/amd/renoir/acp3x-pdm-dma.c
index 942010021319..b33c7aec7481 100644
--- a/sound/soc/amd/renoir/acp3x-pdm-dma.c
+++ b/sound/soc/amd/renoir/acp3x-pdm-dma.c
@@ -150,12 +150,11 @@ static int start_pdm_dma(void __iomem *acp_base)
static int stop_pdm_dma(void __iomem *acp_base)
{
- u32 pdm_enable, pdm_dma_enable, pdm_fifo_flush;
+ u32 pdm_enable, pdm_dma_enable;
int timeout;
pdm_enable = 0x00;
pdm_dma_enable = 0x00;
- pdm_fifo_flush = 0x00;
pdm_enable = rn_readl(acp_base + ACP_WOV_PDM_ENABLE);
pdm_dma_enable = rn_readl(acp_base + ACP_WOV_PDM_DMA_ENABLE);