diff options
author | Joonas Lahtinen <[email protected]> | 2016-05-10 09:08:57 +0300 |
---|---|---|
committer | Mark Brown <[email protected]> | 2016-05-11 14:39:40 +0100 |
commit | 396cbebeeb9734aee8efe39431d3b96655bf1e94 (patch) | |
tree | 6d3c72a86abf22b96de4f1fca3f84b5339c6e574 | |
parent | 76016322ec5670052fdabb08c586d6b16bd5062f (diff) |
ASoC: Intel: Fix printk formatting
Format number after 0x in hex.
Cc: Jie Yang <[email protected]>
Cc: Liam Girdwood <[email protected]>
Cc: Mark Brown <[email protected]>
Cc: Jaroslav Kysela <[email protected]>
Cc: Takashi Iwai <[email protected]>
Signed-off-by: Joonas Lahtinen <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/intel/haswell/sst-haswell-pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/haswell/sst-haswell-pcm.c b/sound/soc/intel/haswell/sst-haswell-pcm.c index 1aa819c7e09b..994256b39b9c 100644 --- a/sound/soc/intel/haswell/sst-haswell-pcm.c +++ b/sound/soc/intel/haswell/sst-haswell-pcm.c @@ -445,7 +445,7 @@ static int create_adsp_page_table(struct snd_pcm_substream *substream, pages = snd_sgbuf_aligned_pages(size); - dev_dbg(rtd->dev, "generating page table for %p size 0x%zu pages %d\n", + dev_dbg(rtd->dev, "generating page table for %p size 0x%zx pages %d\n", dma_area, size, pages); for (i = 0; i < pages; i++) { |