aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis R. Rodriguez <lrodriguez@atheros.com>2009-09-02 19:34:57 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-09-08 16:31:04 -0400
commitdb6be53cbaf118fdad5bdca211a19ca5354c9462 (patch)
tree003f64adcfef4624fa9e691ab450338dd996a4f3
parent5c630ce7e6cb144a29fd5a993363f4928fb4b890 (diff)
ath9k: propagate ieee80211_alloc_hw() failure
The -ENOMEM was never being passed on failure. While at it use dev_err() as ahb does upon failure. Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/ath/ath9k/pci.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/pci.c b/drivers/net/wireless/ath/ath9k/pci.c
index 685a8cebb468..17862ccc3400 100644
--- a/drivers/net/wireless/ath/ath9k/pci.c
+++ b/drivers/net/wireless/ath/ath9k/pci.c
@@ -160,8 +160,9 @@ static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
160 160
161 hw = ieee80211_alloc_hw(sizeof(struct ath_wiphy) + 161 hw = ieee80211_alloc_hw(sizeof(struct ath_wiphy) +
162 sizeof(struct ath_softc), &ath9k_ops); 162 sizeof(struct ath_softc), &ath9k_ops);
163 if (hw == NULL) { 163 if (!hw) {
164 printk(KERN_ERR "ath_pci: no memory for ieee80211_hw\n"); 164 dev_err(&pdev->dev, "no memory for ieee80211_hw\n");
165 ret = -ENOMEM;
165 goto bad2; 166 goto bad2;
166 } 167 }
167 168