[PATCH] parport_serial: printk warning fix
drivers/parport/parport_serial.c: In function `parport_register': drivers/parport/parport_serial.c:334: warning: unsigned int format, different type arg (arg 3) Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
d35c602870
commit
f4f64e9ded
@@ -329,9 +329,9 @@ static int __devinit parport_register (struct pci_dev *dev,
|
|||||||
|
|
||||||
if (priv->num_par == ARRAY_SIZE (priv->port)) {
|
if (priv->num_par == ARRAY_SIZE (priv->port)) {
|
||||||
printk (KERN_WARNING
|
printk (KERN_WARNING
|
||||||
"parport_serial: %s: only %u parallel ports "
|
"parport_serial: %s: only %zu parallel ports "
|
||||||
"supported (%d reported)\n", pci_name (dev),
|
"supported (%d reported)\n", pci_name (dev),
|
||||||
ARRAY_SIZE (priv->port), card->numports);
|
ARRAY_SIZE(priv->port), card->numports);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user