Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5d86e25c authored by Emil Goode's avatar Emil Goode Committed by Mark Brown
Browse files

ASoC: wm0010: Fix warning, use format %zu for type size_t



Fix warning by using format specifier %zu for type size_t

Sparse warning:
sound/soc/codecs/wm0010.c:411:2: warning:
        format ‘%d’ expects argument of type ‘int’,
        but argument 4 has type ‘size_t’ [-Wformat]

Signed-off-by: default avatarEmil Goode <emilgoode@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 4f3ad795
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -408,7 +408,7 @@ static int wm0010_boot(struct snd_soc_codec *codec)
	wm0010->state = WM0010_BOOTROM;
	wm0010->state = WM0010_BOOTROM;
	spin_unlock_irqrestore(&wm0010->irq_lock, flags);
	spin_unlock_irqrestore(&wm0010->irq_lock, flags);


	dev_dbg(codec->dev, "Downloading %d byte stage 2 loader\n", fw->size);
	dev_dbg(codec->dev, "Downloading %zu byte stage 2 loader\n", fw->size);


	/* Copy to local buffer first as vmalloc causes problems for dma */
	/* Copy to local buffer first as vmalloc causes problems for dma */
	img = kzalloc(fw->size, GFP_KERNEL);
	img = kzalloc(fw->size, GFP_KERNEL);