diff options
Diffstat (limited to 'drivers/net/wireless/orinoco_cs.c')
-rw-r--r-- | drivers/net/wireless/orinoco_cs.c | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/drivers/net/wireless/orinoco_cs.c b/drivers/net/wireless/orinoco_cs.c index ee05ec6eda9d..1c19c76d47af 100644 --- a/drivers/net/wireless/orinoco_cs.c +++ b/drivers/net/wireless/orinoco_cs.c | |||
@@ -343,19 +343,10 @@ orinoco_cs_config(struct pcmcia_device *link) | |||
343 | net_device has been registered */ | 343 | net_device has been registered */ |
344 | 344 | ||
345 | /* Finally, report what we've done */ | 345 | /* Finally, report what we've done */ |
346 | printk(KERN_DEBUG "%s: index 0x%02x: ", | 346 | printk(KERN_DEBUG "%s: " DRIVER_NAME " at %s, irq %d, io " |
347 | dev->name, link->conf.ConfigIndex); | 347 | "0x%04x-0x%04x\n", dev->name, dev->class_dev.dev->bus_id, |
348 | if (link->conf.Vpp) | 348 | link->irq.AssignedIRQ, link->io.BasePort1, |
349 | printk(", Vpp %d.%d", link->conf.Vpp / 10, | 349 | link->io.BasePort1 + link->io.NumPorts1 - 1); |
350 | link->conf.Vpp % 10); | ||
351 | printk(", irq %d", link->irq.AssignedIRQ); | ||
352 | if (link->io.NumPorts1) | ||
353 | printk(", io 0x%04x-0x%04x", link->io.BasePort1, | ||
354 | link->io.BasePort1 + link->io.NumPorts1 - 1); | ||
355 | if (link->io.NumPorts2) | ||
356 | printk(" & 0x%04x-0x%04x", link->io.BasePort2, | ||
357 | link->io.BasePort2 + link->io.NumPorts2 - 1); | ||
358 | printk("\n"); | ||
359 | 350 | ||
360 | return 0; | 351 | return 0; |
361 | 352 | ||