diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-27 21:35:40 +0000 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-29 17:28:16 +0000 |
commit | 9b8f5695a155308a4e0355a29747961bec9757c0 (patch) | |
tree | c02f918d7974d61dc64bd02d47c023a388195a1e /sound/soc/samsung/idma.c | |
parent | 4cdf5e49ce8ff79038ee5388cc5f97097238bb29 (diff) |
ASoC: Fix __iomem annotation for IDMA registers
We always store the register address as __iomem but pass it around as a
plain void * which upsets sparse.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/samsung/idma.c')
-rw-r--r-- | sound/soc/samsung/idma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/samsung/idma.c b/sound/soc/samsung/idma.c index 6ca3d8c221a0..baf97ebadd48 100644 --- a/sound/soc/samsung/idma.c +++ b/sound/soc/samsung/idma.c @@ -403,7 +403,7 @@ static int idma_new(struct snd_soc_pcm_runtime *rtd) return ret; } -void idma_reg_addr_init(void *regs, dma_addr_t addr) +void idma_reg_addr_init(void __iomem *regs, dma_addr_t addr) { spin_lock_init(&idma.lock); idma.regs = regs; |