Commit 5d00f203 authored by Andrew Morton's avatar Andrew Morton Committed by David S. Miller

[ATM]: ambassador printk warning fix

From: Jesper Juhl <juhl-lkml@dif.dk>

drivers/atm/ambassador.c:2295: warning: unsigned int format, long unsigned int arg (arg 2)
Signed-off-by: default avatarJesper Juhl <juhl-lkml@dif.dk>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6f52bc1d
......@@ -2293,7 +2293,7 @@ static int __init do_pci_device(struct pci_dev *pci_dev)
u8 irq = pci_dev->irq;
PRINTD (DBG_INFO, "found Madge ATM adapter (amb) at"
" IO %x, IRQ %u, MEM %p", pci_resource_start(pci_dev, 1),
" IO %lx, IRQ %u, MEM %p", pci_resource_start(pci_dev, 1),
irq, bus_to_virt(pci_resource_start(pci_dev, 0)));
// check IO region
......
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