Lines Matching refs:sc

48 extern int ath_tx_findrix(const struct ath_softc *sc, uint8_t rate);
50 extern struct ath_buf * ath_getbuf(struct ath_softc *sc,
52 extern struct ath_buf * _ath_getbuf_locked(struct ath_softc *sc,
54 extern struct ath_buf * ath_buf_clone(struct ath_softc *sc,
57 extern void ath_freebuf(struct ath_softc *sc, struct ath_buf *bf);
58 extern void ath_returnbuf_head(struct ath_softc *sc, struct ath_buf *bf);
59 extern void ath_returnbuf_tail(struct ath_softc *sc, struct ath_buf *bf);
63 extern void ath_tx_default_comp(struct ath_softc *sc, struct ath_buf *bf,
65 extern void ath_tx_update_ratectrl(struct ath_softc *sc,
73 extern void ath_tx_freebuf(struct ath_softc *sc, struct ath_buf *bf,
75 extern void ath_txq_freeholdingbuf(struct ath_softc *sc,
80 extern void ath_mode_init(struct ath_softc *sc);
82 extern void ath_setdefantenna(struct ath_softc *sc, u_int antenna);
84 extern void ath_setslottime(struct ath_softc *sc);
86 extern void ath_legacy_attach_comp_func(struct ath_softc *sc);
88 extern void ath_tx_draintxq(struct ath_softc *sc, struct ath_txq *txq);
90 extern void ath_legacy_tx_drain(struct ath_softc *sc,
93 extern void ath_tx_process_buf_completion(struct ath_softc *sc,
96 extern int ath_stoptxdma(struct ath_softc *sc);
98 extern void ath_tx_update_tim(struct ath_softc *sc,
111 extern void ath_tx_dump(struct ath_softc *sc, struct ath_txq *txq);
116 extern void _ath_power_setpower(struct ath_softc *sc, int power_state,
118 extern void _ath_power_set_selfgen(struct ath_softc *sc,
120 extern void _ath_power_set_power_state(struct ath_softc *sc,
122 extern void _ath_power_restore_power_state(struct ath_softc *sc,
125 #define ath_power_setpower(sc, ps, sg) _ath_power_setpower(sc, ps, sg, \
127 #define ath_power_setselfgen(sc, ps) _ath_power_set_selfgen(sc, ps, \
129 #define ath_power_set_power_state(sc, ps) \
130 _ath_power_set_power_state(sc, ps, __FILE__, __LINE__)
131 #define ath_power_restore_power_state(sc) \
132 _ath_power_restore_power_state(sc, __FILE__, __LINE__)
138 ath_tx_kick(struct ath_softc *sc)
148 ath_tx_swq_kick(struct ath_softc *sc)
151 taskqueue_enqueue(sc->sc_tq, &sc->sc_txqtask);