From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix dev_printk format warning: sound/soc/codecs/wm8985.c:731: warning: format '%d' expects type 'int', but argument 4 has type 'size_t' Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> --- sound/soc/codecs/wm8985.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20100927.orig/sound/soc/codecs/wm8985.c +++ linux-next-20100927/sound/soc/codecs/wm8985.c @@ -728,7 +728,7 @@ static int wm8985_hw_params(struct snd_p return -EINVAL; } - dev_dbg(dai->dev, "BCLK div = %d\n", i); + dev_dbg(dai->dev, "BCLK div = %zd\n", i); snd_soc_update_bits(codec, WM8985_CLOCK_GEN_CONTROL, WM8985_BCLKDIV_MASK, i << WM8985_BCLKDIV_SHIFT); return 0; -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html