diff options
Diffstat (limited to 'drivers/net/lasi_82596.c')
-rw-r--r-- | drivers/net/lasi_82596.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/lasi_82596.c b/drivers/net/lasi_82596.c index efbae4b8398e..a0c578585a50 100644 --- a/drivers/net/lasi_82596.c +++ b/drivers/net/lasi_82596.c | |||
@@ -161,12 +161,12 @@ lan_init_chip(struct parisc_device *dev) | |||
161 | 161 | ||
162 | if (!dev->irq) { | 162 | if (!dev->irq) { |
163 | printk(KERN_ERR "%s: IRQ not found for i82596 at 0x%lx\n", | 163 | printk(KERN_ERR "%s: IRQ not found for i82596 at 0x%lx\n", |
164 | __FILE__, dev->hpa.start); | 164 | __FILE__, (unsigned long)dev->hpa.start); |
165 | return -ENODEV; | 165 | return -ENODEV; |
166 | } | 166 | } |
167 | 167 | ||
168 | printk(KERN_INFO "Found i82596 at 0x%lx, IRQ %d\n", dev->hpa.start, | 168 | printk(KERN_INFO "Found i82596 at 0x%lx, IRQ %d\n", |
169 | dev->irq); | 169 | (unsigned long)dev->hpa.start, dev->irq); |
170 | 170 | ||
171 | netdevice = alloc_etherdev(sizeof(struct i596_private)); | 171 | netdevice = alloc_etherdev(sizeof(struct i596_private)); |
172 | if (!netdevice) | 172 | if (!netdevice) |