]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
USB: isp1760: fix printk format
authorRandy Dunlap <randy.dunlap@oracle.com>
Wed, 30 Apr 2008 20:53:54 +0000 (13:53 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 14 May 2008 17:00:26 +0000 (10:00 -0700)
Fix printk format warnings in isp1760 (in linux-next):

next-20080430/drivers/usb/host/isp1760-hcd.c:994: warning: format '%d' expects type 'int', but argument 6 has type 'size_t'
next-20080430/drivers/usb/host/isp1760-hcd.c:1092: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/host/isp1760-hcd.c

index 4ba96c1e060ce213ae8520c822ceac3a05107d7c..c9cec87382619f8f97c1e1d5a0f124e8836f372a 100644 (file)
@@ -988,7 +988,7 @@ static void do_atl_int(struct usb_hcd *usb_hcd)
                         * This did not trigger for a long time now.
                         */
                        printk(KERN_ERR "Reloading ptd %p/%p... qh %p readed: "
-                                       "%d of %d done: %08x cur: %08x\n", qtd,
+                                       "%d of %zu done: %08x cur: %08x\n", qtd,
                                        urb, qh, PTD_XFERRED_LENGTH(dw3),
                                        qtd->length, done_map,
                                        (1 << queue_entry));
@@ -1088,7 +1088,7 @@ static void do_atl_int(struct usb_hcd *usb_hcd)
                } else if (usb_pipebulk(urb->pipe) && (length < qtd->length)) {
                        /* short BULK received */
 
-                       printk(KERN_ERR "short bulk, %d instead %d\n", length,
+                       printk(KERN_ERR "short bulk, %d instead %zu\n", length,
                                        qtd->length);
                        if (urb->transfer_flags & URB_SHORT_NOT_OK) {
                                urb->status = -EREMOTEIO;