summaryrefslogtreecommitdiff
path: root/drivers/staging/vc04_services/bcm2835-audio
diff options
context:
space:
mode:
authorNishka Dasgupta <nishka.dasgupta_ug18@ashoka.edu.in>2018-03-03 22:12:44 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-03-06 15:03:43 +0300
commit951c16bf48676c90c526fafeec3bb6d1ba87ff0b (patch)
tree1e7b7bea2a40a750cb90e0c10b3be1e7aac07a7e /drivers/staging/vc04_services/bcm2835-audio
parentd3e3a2b50a1a6336f62de7976cd6af5c37226a3b (diff)
downloadlinux-951c16bf48676c90c526fafeec3bb6d1ba87ff0b.tar.xz
staging: vc04_services: bcm2835-audio: Change to unsigned int *
Change 'unsigned *' to 'unsigned int *'. Issue found with checkpatch. Signed-off-by: Nishka Dasgupta <nishka.dasgupta_ug18@ashoka.edu.in> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vc04_services/bcm2835-audio')
-rw-r--r--drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c b/drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c
index 063004052487..8359cf881bef 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;
}