diff options
author | Joe Perches <joe@perches.com> | 2010-07-26 17:39:58 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-07-27 15:14:13 -0400 |
commit | c96c31e499b70964cfc88744046c998bb710e4b8 (patch) | |
tree | 0157102fbc952e3646690f3491199607669eed69 /drivers/net/wireless/ath/ath9k/pci.c | |
parent | e1db74fcc3d95c8a051ec457241b5aa65a01a603 (diff) |
drivers/net/wireless: Use wiphy_<level>
Standardize the logging macros used.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/pci.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/pci.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/net/wireless/ath/ath9k/pci.c b/drivers/net/wireless/ath/ath9k/pci.c index 257b10ba6f5..b5b651413e7 100644 --- a/drivers/net/wireless/ath/ath9k/pci.c +++ b/drivers/net/wireless/ath/ath9k/pci.c | |||
@@ -209,11 +209,8 @@ static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id) | |||
209 | } | 209 | } |
210 | 210 | ||
211 | ath9k_hw_name(sc->sc_ah, hw_name, sizeof(hw_name)); | 211 | ath9k_hw_name(sc->sc_ah, hw_name, sizeof(hw_name)); |
212 | printk(KERN_INFO | 212 | wiphy_info(hw->wiphy, "%s mem=0x%lx, irq=%d\n", |
213 | "%s: %s mem=0x%lx, irq=%d\n", | 213 | hw_name, (unsigned long)mem, pdev->irq); |
214 | wiphy_name(hw->wiphy), | ||
215 | hw_name, | ||
216 | (unsigned long)mem, pdev->irq); | ||
217 | 214 | ||
218 | return 0; | 215 | return 0; |
219 | 216 | ||