From: Andrew Morton 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 --- drivers/parport/parport_serial.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/parport/parport_serial.c~parport_serial-printk-warning-fix drivers/parport/parport_serial.c --- 25/drivers/parport/parport_serial.c~parport_serial-printk-warning-fix 2006-01-19 23:42:43.000000000 -0800 +++ 25-akpm/drivers/parport/parport_serial.c 2006-01-19 23:43:12.000000000 -0800 @@ -329,9 +329,9 @@ static int __devinit parport_register (s if (priv->num_par == ARRAY_SIZE (priv->port)) { printk (KERN_WARNING - "parport_serial: %s: only %u parallel ports " + "parport_serial: %s: only %zu parallel ports " "supported (%d reported)\n", pci_name (dev), - ARRAY_SIZE (priv->port), card->numports); + ARRAY_SIZE(priv->port), card->numports); break; } _