Lines Matching defs:sc

46 extern int ath_tx_findrix(const struct ath_softc *sc, uint8_t rate);
48 extern struct ath_buf * ath_getbuf(struct ath_softc *sc,
50 extern struct ath_buf * _ath_getbuf_locked(struct ath_softc *sc,
52 extern struct ath_buf * ath_buf_clone(struct ath_softc *sc,
55 extern void ath_freebuf(struct ath_softc *sc, struct ath_buf *bf);
56 extern void ath_returnbuf_head(struct ath_softc *sc, struct ath_buf *bf);
57 extern void ath_returnbuf_tail(struct ath_softc *sc, struct ath_buf *bf);
60 extern void ath_tx_default_comp(struct ath_softc *sc, struct ath_buf *bf,
62 extern void ath_tx_update_ratectrl(struct ath_softc *sc,
69 extern void ath_tx_freebuf(struct ath_softc *sc, struct ath_buf *bf,
71 extern void ath_txq_freeholdingbuf(struct ath_softc *sc,
76 extern void ath_mode_init(struct ath_softc *sc);
78 extern void ath_setdefantenna(struct ath_softc *sc, u_int antenna);
80 extern void ath_setslottime(struct ath_softc *sc);
82 extern void ath_legacy_attach_comp_func(struct ath_softc *sc);
84 extern void ath_tx_draintxq(struct ath_softc *sc, struct ath_txq *txq);
86 extern void ath_legacy_tx_drain(struct ath_softc *sc,
89 extern void ath_tx_process_buf_completion(struct ath_softc *sc,
92 extern int ath_stoptxdma(struct ath_softc *sc);
94 extern void ath_tx_update_tim(struct ath_softc *sc,
107 extern void ath_tx_dump(struct ath_softc *sc, struct ath_txq *txq);
112 extern void _ath_power_setpower(struct ath_softc *sc, int power_state, const char *file, int line);
113 extern void _ath_power_set_selfgen(struct ath_softc *sc, int power_state, const char *file, int line);
114 extern void _ath_power_set_power_state(struct ath_softc *sc, int power_state, const char *file, int line);
115 extern void _ath_power_restore_power_state(struct ath_softc *sc, const char *file, int line);
117 #define ath_power_setpower(sc, ps) _ath_power_setpower(sc, ps, __FILE__, __LINE__)
118 #define ath_power_setselfgen(sc, ps) _ath_power_set_selfgen(sc, ps, __FILE__, __LINE__)
119 #define ath_power_set_power_state(sc, ps) _ath_power_set_power_state(sc, ps, __FILE__, __LINE__)
120 #define ath_power_restore_power_state(sc) _ath_power_restore_power_state(sc, __FILE__, __LINE__)
126 ath_tx_kick(struct ath_softc *sc)
136 ath_tx_swq_kick(struct ath_softc *sc)
139 taskqueue_enqueue(sc->sc_tq, &sc->sc_txqtask);