diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-09-24 20:36:07 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-09-26 06:51:00 -0300 |
commit | 7983b773bad92fcc790152fe6db616644db1dfda (patch) | |
tree | 886b26eb358e0e00714e36666d5f722339b04d02 /drivers/media/usb/cx231xx | |
parent | 339f06c5d354c4c89814f11d0c3393f198b3dd00 (diff) | |
download | blackbird-op-linux-7983b773bad92fcc790152fe6db616644db1dfda.tar.gz blackbird-op-linux-7983b773bad92fcc790152fe6db616644db1dfda.zip |
[media] usb drivers: use %zu instead of %zd
size_t is unsigned.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/usb/cx231xx')
-rw-r--r-- | drivers/media/usb/cx231xx/cx231xx-avcore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/cx231xx/cx231xx-avcore.c b/drivers/media/usb/cx231xx/cx231xx-avcore.c index 51872b9f75a1..40a69879fc0a 100644 --- a/drivers/media/usb/cx231xx/cx231xx-avcore.c +++ b/drivers/media/usb/cx231xx/cx231xx-avcore.c @@ -1595,7 +1595,7 @@ void cx231xx_set_DIF_bandpass(struct cx231xx *dev, u32 if_freq, if_freq = 16000000; } - cx231xx_info("Enter IF=%zd\n", + cx231xx_info("Enter IF=%zu\n", ARRAY_SIZE(Dif_set_array)); for (i = 0; i < ARRAY_SIZE(Dif_set_array); i++) { if (Dif_set_array[i].if_freq == if_freq) { |