aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k
diff options
context:
space:
mode:
authorLuis R. Rodriguez <lrodriguez@atheros.com>2009-09-02 20:06:21 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-09-08 16:31:04 -0400
commitfc548af877374f7e26c4f670f3843c6d29e02a98 (patch)
tree8c32540ab846508cb187572845ab33438c43638f /drivers/net/wireless/ath/ath9k
parent580171f7cd08687cdf1b263aabb35608b3c37433 (diff)
ath9k: claim irq for ath9k, not ath for pci
ath9k ahb requests an IRQ and indicates 'ath9k' claimed it, ath9k pci requests an IRQ and indicates 'ath' claims it; since 'ath' is another module sync both ahb and pci to claim the irq using 'ath9k'. Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k')
-rw-r--r--drivers/net/wireless/ath/ath9k/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/pci.c b/drivers/net/wireless/ath/ath9k/pci.c
index bc4bc2c2d37..8bb286df71b 100644
--- a/drivers/net/wireless/ath/ath9k/pci.c
+++ b/drivers/net/wireless/ath/ath9k/pci.c
@@ -187,7 +187,7 @@ static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
187 187
188 /* setup interrupt service routine */ 188 /* setup interrupt service routine */
189 189
190 ret = request_irq(pdev->irq, ath_isr, IRQF_SHARED, "ath", sc); 190 ret = request_irq(pdev->irq, ath_isr, IRQF_SHARED, "ath9k", sc);
191 if (ret) { 191 if (ret) {
192 dev_err(&pdev->dev, "request_irq failed\n"); 192 dev_err(&pdev->dev, "request_irq failed\n");
193 goto bad4; 193 goto bad4;