Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 306efdd1 authored by Senthil Balasubramanian's avatar Senthil Balasubramanian Committed by John W. Linville
Browse files

ath9k: IRQ should be disabled before calling free_irq()



ath9k frees irq even before IRQs are disabled and existing IRQs
are flushed when rfkill_register() fails.

Signed-off-by: default avatarSenthil Balasubramanian <senthilkumar@atheros.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent e97275cb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -810,9 +810,9 @@ static int ath_start_rfkill_poll(struct ath_softc *sc)
			rfkill_free(sc->rf_kill.rfkill);

			/* Deinitialize the device */
			ath_detach(sc);
			if (sc->pdev->irq)
				free_irq(sc->pdev->irq, sc);
			ath_detach(sc);
			pci_iounmap(sc->pdev, sc->mem);
			pci_release_region(sc->pdev, 0);
			pci_disable_device(sc->pdev);