summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorLiam Girdwood <lrg@slimlogic.co.uk>2010-08-17 23:25:12 (GMT)
committerLiam Girdwood <lrg@slimlogic.co.uk>2010-08-17 23:29:16 (GMT)
commit4c3f9d5fcb46d769f4a52a044fead863419c1d58 (patch)
treea08589efad946d22f75ed5d24b2359b6f9a53fa9 /sound
parent1593d7dd8c7b939e31b9d637307b26ada3e3c514 (diff)
downloadlinux-fsl-qoriq-4c3f9d5fcb46d769f4a52a044fead863419c1d58.tar.xz
ASoC: core - fix build warning on x86_64
Output size_t type as a "%Zu" to avoid warnings. Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/soc-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index 3d480eb..7093c17 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -2916,7 +2916,7 @@ int snd_soc_register_dais(struct device *dev,
struct snd_soc_dai *dai;
int i, ret = 0;
- dev_dbg(dev, "dai register %s #%d\n", dev_name(dev), count);
+ dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count);
for (i = 0; i < count; i++) {