aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2006-02-03 03:04:02 -0800
committerLinus Torvalds <torvalds@g5.osdl.org>2006-02-03 08:32:03 -0800
commitf4f64e9ded28bcdb2cb57438bd1721579f8b28c0 (patch)
tree08d9f88145bc100fc54904d6519f5a71ef2abbe7 /drivers
parent[PATCH] someone broke reiserfs V3 mount options, this fixes it (diff)
downloadlinux-dev-f4f64e9ded28bcdb2cb57438bd1721579f8b28c0.tar.xz
linux-dev-f4f64e9ded28bcdb2cb57438bd1721579f8b28c0.zip
[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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/parport/parport_serial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/parport/parport_serial.c b/drivers/parport/parport_serial.c
index 76dd077e3184..166de3507780 100644
--- a/drivers/parport/parport_serial.c
+++ b/drivers/parport/parport_serial.c
@@ -329,9 +329,9 @@ static int __devinit parport_register (struct pci_dev *dev,
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;
}