summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vc04_services
diff options
context:
space:
mode:
authorNishka Dasgupta2018-03-03 20:12:44 +0100
committerGreg Kroah-Hartman2018-03-06 13:03:43 +0100
commit951c16bf48676c90c526fafeec3bb6d1ba87ff0b (patch)
tree1e7b7bea2a40a750cb90e0c10b3be1e7aac07a7e /drivers/staging/vc04_services
parentstaging: vc04_services: bcm2835-audio Format multiline comment (diff)
downloadkernel-qcow2-linux-951c16bf48676c90c526fafeec3bb6d1ba87ff0b.tar.gz
kernel-qcow2-linux-951c16bf48676c90c526fafeec3bb6d1ba87ff0b.tar.xz
kernel-qcow2-linux-951c16bf48676c90c526fafeec3bb6d1ba87ff0b.zip
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')
-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;
}