From: Nishka Dasgupta Date: Sat, 3 Mar 2018 19:12:44 +0000 (+0530) Subject: staging: vc04_services: bcm2835-audio: Change to unsigned int * X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=951c16bf48676c90c526fafeec3bb6d1ba87ff0b;p=linux.git staging: vc04_services: bcm2835-audio: Change to unsigned int * Change 'unsigned *' to 'unsigned int *'. Issue found with checkpatch. Signed-off-by: Nishka Dasgupta Acked-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c index 0630040524876..8359cf881bef5 100644 --- a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c +++ b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c @@ -414,7 +414,7 @@ static int snd_bcm2835_pcm_lib_ioctl(struct snd_pcm_substream *substream, int ret = snd_pcm_lib_ioctl(substream, cmd, arg); audio_info(" .. substream=%p, cmd=%d, arg=%p (%x) ret=%d\n", substream, - cmd, arg, arg ? *(unsigned *) arg : 0, ret); + cmd, arg, arg ? *(unsigned int *)arg : 0, ret); return ret; }