Lines Matching refs:sc
61 struct ath_softc *sc = (struct ath_softc *)common->priv; in ath_ahb_eeprom_read() local
62 struct platform_device *pdev = to_platform_device(sc->dev); in ath_ahb_eeprom_read()
86 struct ath_softc *sc; in ath_ahb_probe() local
130 sc = hw->priv; in ath_ahb_probe()
131 sc->hw = hw; in ath_ahb_probe()
132 sc->dev = &pdev->dev; in ath_ahb_probe()
133 sc->mem = mem; in ath_ahb_probe()
134 sc->irq = irq; in ath_ahb_probe()
136 ret = request_irq(irq, ath_isr, IRQF_SHARED, "ath9k", sc); in ath_ahb_probe()
142 ret = ath9k_init_device(id->driver_data, sc, &ath_ahb_bus_ops); in ath_ahb_probe()
148 ah = sc->sc_ah; in ath_ahb_probe()
156 free_irq(irq, sc); in ath_ahb_probe()
167 struct ath_softc *sc = hw->priv; in ath_ahb_remove() local
169 ath9k_deinit_device(sc); in ath_ahb_remove()
170 free_irq(sc->irq, sc); in ath_ahb_remove()
171 ieee80211_free_hw(sc->hw); in ath_ahb_remove()