[media] cx231xx: remove a printk warning at -avcore and at -417
authorMauro Carvalho Chehab <mchehab@redhat.com>
Sun, 26 Sep 2010 02:46:08 +0000 (23:46 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Thu, 21 Oct 2010 03:17:37 +0000 (01:17 -0200)
drivers/media/video/cx231xx/cx231xx-avcore.c:1608: warning: format ‘%d’ expects type ‘int’, but argument 3 has type ‘long unsigned int’
drivers/media/video/cx231xx/cx231xx-417.c:1047: warning: format ‘%d’ expects type ‘int’, but argument 3 has type ‘size_t’

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/cx231xx/cx231xx-417.c
drivers/media/video/cx231xx/cx231xx-avcore.c

index 38acc55..6fb2d17 100644 (file)
@@ -1044,7 +1044,7 @@ static int cx231xx_load_firmware(struct cx231xx *dev)
        /* transfer to the chip */
        dprintk(2, "Loading firmware to GPIO...\n");
        p_fw_data = (u32 *)firmware->data;
-       dprintk(2, "firmware->size=%d\n", firmware->size);
+       dprintk(2, "firmware->size=%zd\n", firmware->size);
        for (transfer_size = 0; transfer_size < firmware->size;
                 transfer_size += 4) {
                fw_data = *p_fw_data;
index b4eda90..ab9fbf8 100644 (file)
@@ -1605,7 +1605,7 @@ void cx231xx_set_DIF_bandpass(struct cx231xx *dev, u32 if_freq,
        if_freq = 16000000;
     }
 
-    cx231xx_info("Enter IF=%d\n",
+    cx231xx_info("Enter IF=%zd\n",
                 sizeof(Dif_set_array)/sizeof(struct dif_settings));
     for (i = 0; i < sizeof(Dif_set_array)/sizeof(struct dif_settings); i++) {
        if (Dif_set_array[i].if_freq == if_freq) {