diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath5k/base.c')
-rw-r--r-- | drivers/net/wireless/ath/ath5k/base.c | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/drivers/net/wireless/ath/ath5k/base.c b/drivers/net/wireless/ath/ath5k/base.c index 06fc893723fa..3cb07520d47b 100644 --- a/drivers/net/wireless/ath/ath5k/base.c +++ b/drivers/net/wireless/ath/ath5k/base.c | |||
@@ -565,16 +565,25 @@ ath5k_pci_probe(struct pci_dev *pdev, | |||
565 | goto err_free; | 565 | goto err_free; |
566 | } | 566 | } |
567 | 567 | ||
568 | /* Initialize device */ | 568 | /*If we passed the test malloc a ath5k_hw struct*/ |
569 | sc->ah = ath5k_hw_attach(sc); | 569 | sc->ah = kzalloc(sizeof(struct ath5k_hw), GFP_KERNEL); |
570 | if (IS_ERR(sc->ah)) { | 570 | if (!sc->ah) { |
571 | ret = PTR_ERR(sc->ah); | 571 | ret = -ENOMEM; |
572 | ATH5K_ERR(sc, "out of memory\n"); | ||
572 | goto err_irq; | 573 | goto err_irq; |
573 | } | 574 | } |
574 | 575 | ||
576 | sc->ah->ah_sc = sc; | ||
577 | sc->ah->ah_iobase = sc->iobase; | ||
575 | common = ath5k_hw_common(sc->ah); | 578 | common = ath5k_hw_common(sc->ah); |
576 | common->cachelsz = csz << 2; /* convert to bytes */ | 579 | common->cachelsz = csz << 2; /* convert to bytes */ |
577 | 580 | ||
581 | /* Initialize device */ | ||
582 | ret = ath5k_hw_attach(sc); | ||
583 | if (ret) { | ||
584 | goto err_free_ah; | ||
585 | } | ||
586 | |||
578 | /* set up multi-rate retry capabilities */ | 587 | /* set up multi-rate retry capabilities */ |
579 | if (sc->ah->ah_version == AR5K_AR5212) { | 588 | if (sc->ah->ah_version == AR5K_AR5212) { |
580 | hw->max_rates = 4; | 589 | hw->max_rates = 4; |
@@ -643,6 +652,8 @@ err_ah: | |||
643 | ath5k_hw_detach(sc->ah); | 652 | ath5k_hw_detach(sc->ah); |
644 | err_irq: | 653 | err_irq: |
645 | free_irq(pdev->irq, sc); | 654 | free_irq(pdev->irq, sc); |
655 | err_free_ah: | ||
656 | kfree(sc->ah); | ||
646 | err_free: | 657 | err_free: |
647 | ieee80211_free_hw(hw); | 658 | ieee80211_free_hw(hw); |
648 | err_map: | 659 | err_map: |
@@ -664,6 +675,7 @@ ath5k_pci_remove(struct pci_dev *pdev) | |||
664 | ath5k_debug_finish_device(sc); | 675 | ath5k_debug_finish_device(sc); |
665 | ath5k_detach(pdev, hw); | 676 | ath5k_detach(pdev, hw); |
666 | ath5k_hw_detach(sc->ah); | 677 | ath5k_hw_detach(sc->ah); |
678 | kfree(sc->ah); | ||
667 | free_irq(pdev->irq, sc); | 679 | free_irq(pdev->irq, sc); |
668 | pci_iounmap(pdev, sc->iobase); | 680 | pci_iounmap(pdev, sc->iobase); |
669 | pci_release_region(pdev, 0); | 681 | pci_release_region(pdev, 0); |