aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorKalle Valo <kalle.valo@iki.fi>2009-02-27 00:50:00 -0500
committerJohn W. Linville <linville@tuxdriver.com>2009-02-27 14:53:05 -0500
commit2a07954b83a3d4dc93031d3ce030fb9380a8e15a (patch)
tree7a39dac358ed162b3e8ad9cb86cd3b457e1e7b88 /drivers
parent0bfbce18b9c11201ebf1cfbc0deeab7bdbfe32a5 (diff)
at76c50x-usb: use dev_name() instead of struct device.bus_id
Stephen Rothwell reported that bus_id from struct device will be removed, use dev_name() instead. Signed-off-by: Kalle Valo <kalle.valo@iki.fi> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/at76c50x-usb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/at76c50x-usb.c b/drivers/net/wireless/at76c50x-usb.c
index cc2a2674ba7d..0c02f1c2bd94 100644
--- a/drivers/net/wireless/at76c50x-usb.c
+++ b/drivers/net/wireless/at76c50x-usb.c
@@ -2268,7 +2268,7 @@ static int at76_init_new_device(struct at76_priv *priv,
2268 2268
2269 printk(KERN_INFO "%s: USB %s, MAC %s, firmware %d.%d.%d-%d\n", 2269 printk(KERN_INFO "%s: USB %s, MAC %s, firmware %d.%d.%d-%d\n",
2270 wiphy_name(priv->hw->wiphy), 2270 wiphy_name(priv->hw->wiphy),
2271 interface->dev.bus_id, mac2str(priv->mac_addr), 2271 dev_name(&interface->dev), mac2str(priv->mac_addr),
2272 priv->fw_version.major, priv->fw_version.minor, 2272 priv->fw_version.major, priv->fw_version.minor,
2273 priv->fw_version.patch, priv->fw_version.build); 2273 priv->fw_version.patch, priv->fw_version.build);
2274 printk(KERN_INFO "%s: regulatory domain 0x%02x: %s\n", 2274 printk(KERN_INFO "%s: regulatory domain 0x%02x: %s\n",