Commit f364ff23 authored by David S. Miller's avatar David S. Miller

[USB]: In ohci-pci.c, use size_t printf format.

parent 01a99f33
...@@ -389,7 +389,7 @@ static int __init ohci_hcd_pci_init (void) ...@@ -389,7 +389,7 @@ static int __init ohci_hcd_pci_init (void)
if (usb_disabled()) if (usb_disabled())
return -ENODEV; return -ENODEV;
printk (KERN_DEBUG "%s: block sizes: ed %d td %d\n", hcd_name, printk (KERN_DEBUG "%s: block sizes: ed %Zd td %Zd\n", hcd_name,
sizeof (struct ed), sizeof (struct td)); sizeof (struct ed), sizeof (struct td));
return pci_module_init (&ohci_pci_driver); return pci_module_init (&ohci_pci_driver);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment