Commit 720ffa4c authored by Liam Girdwood's avatar Liam Girdwood Committed by Mark Brown

ASoC: core - fix build warning on x86_64

Output size_t type as a "%Zu" to avoid warnings.
Signed-off-by: default avatarLiam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 1593d7dd
......@@ -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++) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment