diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2002-04-09 15:14:34 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-02-07 13:37:11 -0500 |
commit | 43cb76d91ee85f579a69d42bc8efc08bac560278 (patch) | |
tree | f5c4766a6639fee3685dbbfc9110bb334af9e6dd /drivers/net/wireless/spectrum_cs.c | |
parent | 2943ecf2ed32632473c06f1975db47a7aa98c10f (diff) |
Network: convert network devices to use struct device instead of class_device
This lets the network core have the ability to handle suspend/resume
issues, if it wants to.
Thanks to Frederik Deweerdt <frederik.deweerdt@gmail.com> for the arm
driver fixes.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/net/wireless/spectrum_cs.c')
-rw-r--r-- | drivers/net/wireless/spectrum_cs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/spectrum_cs.c b/drivers/net/wireless/spectrum_cs.c index cf2d1486b01d..af70460f008a 100644 --- a/drivers/net/wireless/spectrum_cs.c +++ b/drivers/net/wireless/spectrum_cs.c | |||
@@ -806,7 +806,7 @@ spectrum_cs_config(struct pcmcia_device *link) | |||
806 | 806 | ||
807 | /* Finally, report what we've done */ | 807 | /* Finally, report what we've done */ |
808 | printk(KERN_DEBUG "%s: " DRIVER_NAME " at %s, irq %d, io " | 808 | printk(KERN_DEBUG "%s: " DRIVER_NAME " at %s, irq %d, io " |
809 | "0x%04x-0x%04x\n", dev->name, dev->class_dev.dev->bus_id, | 809 | "0x%04x-0x%04x\n", dev->name, dev->dev.parent->bus_id, |
810 | link->irq.AssignedIRQ, link->io.BasePort1, | 810 | link->irq.AssignedIRQ, link->io.BasePort1, |
811 | link->io.BasePort1 + link->io.NumPorts1 - 1); | 811 | link->io.BasePort1 + link->io.NumPorts1 - 1); |
812 | 812 | ||