diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2008-05-30 11:42:11 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-07-22 00:55:03 -0400 |
commit | 3f9787046ea37a26170dc4439efa21f8d23a9978 (patch) | |
tree | 7daa536e4231f683f9ed95ea1e007dd9d09f846c /drivers/net/arm | |
parent | 2222c313e9371b6476787594bc5804c72cee2597 (diff) |
arm: bus_id -> dev_name() and dev_set_name() conversions
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/net/arm')
-rw-r--r-- | drivers/net/arm/at91_ether.c | 2 | ||||
-rw-r--r-- | drivers/net/arm/ep93xx_eth.c | 2 | ||||
-rw-r--r-- | drivers/net/arm/etherh.c | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/arm/at91_ether.c b/drivers/net/arm/at91_ether.c index 1e39e78f1778..71f7cec30911 100644 --- a/drivers/net/arm/at91_ether.c +++ b/drivers/net/arm/at91_ether.c | |||
@@ -677,7 +677,7 @@ static void at91ether_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo | |||
677 | { | 677 | { |
678 | strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); | 678 | strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); |
679 | strlcpy(info->version, DRV_VERSION, sizeof(info->version)); | 679 | strlcpy(info->version, DRV_VERSION, sizeof(info->version)); |
680 | strlcpy(info->bus_info, dev->dev.parent->bus_id, sizeof(info->bus_info)); | 680 | strlcpy(info->bus_info, dev_name(dev->dev.parent), sizeof(info->bus_info)); |
681 | } | 681 | } |
682 | 682 | ||
683 | static const struct ethtool_ops at91ether_ethtool_ops = { | 683 | static const struct ethtool_ops at91ether_ethtool_ops = { |
diff --git a/drivers/net/arm/ep93xx_eth.c b/drivers/net/arm/ep93xx_eth.c index ecd8fc6146e9..7a14980f3472 100644 --- a/drivers/net/arm/ep93xx_eth.c +++ b/drivers/net/arm/ep93xx_eth.c | |||
@@ -848,7 +848,7 @@ static int ep93xx_eth_probe(struct platform_device *pdev) | |||
848 | 848 | ||
849 | ep->res = request_mem_region(pdev->resource[0].start, | 849 | ep->res = request_mem_region(pdev->resource[0].start, |
850 | pdev->resource[0].end - pdev->resource[0].start + 1, | 850 | pdev->resource[0].end - pdev->resource[0].start + 1, |
851 | pdev->dev.bus_id); | 851 | dev_name(&pdev->dev)); |
852 | if (ep->res == NULL) { | 852 | if (ep->res == NULL) { |
853 | dev_err(&pdev->dev, "Could not reserve memory region\n"); | 853 | dev_err(&pdev->dev, "Could not reserve memory region\n"); |
854 | err = -ENOMEM; | 854 | err = -ENOMEM; |
diff --git a/drivers/net/arm/etherh.c b/drivers/net/arm/etherh.c index e9d15eccad08..5c5f1e470d3c 100644 --- a/drivers/net/arm/etherh.c +++ b/drivers/net/arm/etherh.c | |||
@@ -535,7 +535,7 @@ static int __init etherh_addr(char *addr, struct expansion_card *ec) | |||
535 | 535 | ||
536 | if (!ecard_readchunk(&cd, ec, 0xf5, 0)) { | 536 | if (!ecard_readchunk(&cd, ec, 0xf5, 0)) { |
537 | printk(KERN_ERR "%s: unable to read podule description string\n", | 537 | printk(KERN_ERR "%s: unable to read podule description string\n", |
538 | ec->dev.bus_id); | 538 | dev_name(&ec->dev)); |
539 | goto no_addr; | 539 | goto no_addr; |
540 | } | 540 | } |
541 | 541 | ||
@@ -554,7 +554,7 @@ static int __init etherh_addr(char *addr, struct expansion_card *ec) | |||
554 | } | 554 | } |
555 | 555 | ||
556 | printk(KERN_ERR "%s: unable to parse MAC address: %s\n", | 556 | printk(KERN_ERR "%s: unable to parse MAC address: %s\n", |
557 | ec->dev.bus_id, cd.d.string); | 557 | dev_name(&ec->dev), cd.d.string); |
558 | 558 | ||
559 | no_addr: | 559 | no_addr: |
560 | return -ENODEV; | 560 | return -ENODEV; |
@@ -585,7 +585,7 @@ static void etherh_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *i | |||
585 | { | 585 | { |
586 | strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); | 586 | strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); |
587 | strlcpy(info->version, DRV_VERSION, sizeof(info->version)); | 587 | strlcpy(info->version, DRV_VERSION, sizeof(info->version)); |
588 | strlcpy(info->bus_info, dev->dev.parent->bus_id, | 588 | strlcpy(info->bus_info, dev_name(dev->dev.parent), |
589 | sizeof(info->bus_info)); | 589 | sizeof(info->bus_info)); |
590 | } | 590 | } |
591 | 591 | ||