diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2018-12-18 11:18:10 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-01-03 16:32:48 +0000 |
commit | 02a07872f84fc5fe61fa65310ff23bcad166a4f5 (patch) | |
tree | 1cffe686fb7d0659df183af2eaf27538b5016697 /sound | |
parent | 2998369fb93f129b953aeb2984ae01e26c4fdf69 (diff) | |
download | linux-02a07872f84fc5fe61fa65310ff23bcad166a4f5.tar.bz2 |
ASoC: dma-sh7760: cleanup a debug printk
The intent was to print the address as a hexadecimal but there is an
extra "u" in the "0x%08ulx" format specification so it is displayed as
decimal.
Fixes: aef3b06ac697 ("[ALSA] SH7760 ASoC support")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/sh/dma-sh7760.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sh/dma-sh7760.c b/sound/soc/sh/dma-sh7760.c index 922fb6aa3ed1..5aee11c94f2a 100644 --- a/sound/soc/sh/dma-sh7760.c +++ b/sound/soc/sh/dma-sh7760.c @@ -202,7 +202,7 @@ static int camelot_prepare(struct snd_pcm_substream *substream) struct snd_soc_pcm_runtime *rtd = substream->private_data; struct camelot_pcm *cam = &cam_pcm_data[rtd->cpu_dai->id]; - pr_debug("PCM data: addr 0x%08ulx len %d\n", + pr_debug("PCM data: addr 0x%08lx len %d\n", (u32)runtime->dma_addr, runtime->dma_bytes); if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |