diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2008-11-10 16:55:14 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-10 16:55:14 -0500 |
commit | fb28ad35906af2f042c94e2f9c0f898ef9acfa37 (patch) | |
tree | ee3d535ab38d680b424a857406789f8c28bf5266 /drivers/net/wireless/orinoco | |
parent | 23779897546c1effb546ff89b89803d9d955d517 (diff) |
net: struct device - replace bus_id with dev_name(), dev_set_name()
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/orinoco')
-rw-r--r-- | drivers/net/wireless/orinoco/orinoco.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/orinoco/orinoco_cs.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/orinoco/spectrum_cs.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/orinoco/orinoco.c b/drivers/net/wireless/orinoco/orinoco.c index f4ea08f96970..072be44b37de 100644 --- a/drivers/net/wireless/orinoco/orinoco.c +++ b/drivers/net/wireless/orinoco/orinoco.c | |||
@@ -5987,7 +5987,7 @@ static void orinoco_get_drvinfo(struct net_device *dev, | |||
5987 | strncpy(info->version, DRIVER_VERSION, sizeof(info->version) - 1); | 5987 | strncpy(info->version, DRIVER_VERSION, sizeof(info->version) - 1); |
5988 | strncpy(info->fw_version, priv->fw_name, sizeof(info->fw_version) - 1); | 5988 | strncpy(info->fw_version, priv->fw_name, sizeof(info->fw_version) - 1); |
5989 | if (dev->dev.parent) | 5989 | if (dev->dev.parent) |
5990 | strncpy(info->bus_info, dev->dev.parent->bus_id, | 5990 | strncpy(info->bus_info, dev_name(dev->dev.parent), |
5991 | sizeof(info->bus_info) - 1); | 5991 | sizeof(info->bus_info) - 1); |
5992 | else | 5992 | else |
5993 | snprintf(info->bus_info, sizeof(info->bus_info) - 1, | 5993 | snprintf(info->bus_info, sizeof(info->bus_info) - 1, |
diff --git a/drivers/net/wireless/orinoco/orinoco_cs.c b/drivers/net/wireless/orinoco/orinoco_cs.c index 6fcf2bda7cdf..bf6a51da3b29 100644 --- a/drivers/net/wireless/orinoco/orinoco_cs.c +++ b/drivers/net/wireless/orinoco/orinoco_cs.c | |||
@@ -308,7 +308,7 @@ orinoco_cs_config(struct pcmcia_device *link) | |||
308 | 308 | ||
309 | /* Finally, report what we've done */ | 309 | /* Finally, report what we've done */ |
310 | printk(KERN_DEBUG "%s: " DRIVER_NAME " at %s, irq %d, io " | 310 | printk(KERN_DEBUG "%s: " DRIVER_NAME " at %s, irq %d, io " |
311 | "0x%04x-0x%04x\n", dev->name, dev->dev.parent->bus_id, | 311 | "0x%04x-0x%04x\n", dev->name, dev_name(dev->dev.parent), |
312 | link->irq.AssignedIRQ, link->io.BasePort1, | 312 | link->irq.AssignedIRQ, link->io.BasePort1, |
313 | link->io.BasePort1 + link->io.NumPorts1 - 1); | 313 | link->io.BasePort1 + link->io.NumPorts1 - 1); |
314 | return 0; | 314 | return 0; |
diff --git a/drivers/net/wireless/orinoco/spectrum_cs.c b/drivers/net/wireless/orinoco/spectrum_cs.c index 852789ad34b3..0bae3dcf9d50 100644 --- a/drivers/net/wireless/orinoco/spectrum_cs.c +++ b/drivers/net/wireless/orinoco/spectrum_cs.c | |||
@@ -383,7 +383,7 @@ spectrum_cs_config(struct pcmcia_device *link) | |||
383 | 383 | ||
384 | /* Finally, report what we've done */ | 384 | /* Finally, report what we've done */ |
385 | printk(KERN_DEBUG "%s: " DRIVER_NAME " at %s, irq %d, io " | 385 | printk(KERN_DEBUG "%s: " DRIVER_NAME " at %s, irq %d, io " |
386 | "0x%04x-0x%04x\n", dev->name, dev->dev.parent->bus_id, | 386 | "0x%04x-0x%04x\n", dev->name, dev_name(dev->dev.parent), |
387 | link->irq.AssignedIRQ, link->io.BasePort1, | 387 | link->irq.AssignedIRQ, link->io.BasePort1, |
388 | link->io.BasePort1 + link->io.NumPorts1 - 1); | 388 | link->io.BasePort1 + link->io.NumPorts1 - 1); |
389 | 389 | ||