Lines Matching refs:local

13 static inline void ieee80211_led_rx(struct ieee80211_local *local)
16 if (!atomic_read(&local->rx_led_active))
18 led_trigger_blink_oneshot(&local->rx_led, MAC80211_BLINK_DELAY, MAC80211_BLINK_DELAY, 0);
22 static inline void ieee80211_led_tx(struct ieee80211_local *local)
25 if (!atomic_read(&local->tx_led_active))
27 led_trigger_blink_oneshot(&local->tx_led, MAC80211_BLINK_DELAY, MAC80211_BLINK_DELAY, 0);
32 void ieee80211_led_assoc(struct ieee80211_local *local,
34 void ieee80211_led_radio(struct ieee80211_local *local,
36 void ieee80211_alloc_led_names(struct ieee80211_local *local);
37 void ieee80211_free_led_names(struct ieee80211_local *local);
38 void ieee80211_led_init(struct ieee80211_local *local);
39 void ieee80211_led_exit(struct ieee80211_local *local);
40 void ieee80211_mod_tpt_led_trig(struct ieee80211_local *local,
43 static inline void ieee80211_led_assoc(struct ieee80211_local *local,
47 static inline void ieee80211_led_radio(struct ieee80211_local *local,
51 static inline void ieee80211_alloc_led_names(struct ieee80211_local *local)
54 static inline void ieee80211_free_led_names(struct ieee80211_local *local)
57 static inline void ieee80211_led_init(struct ieee80211_local *local)
60 static inline void ieee80211_led_exit(struct ieee80211_local *local)
63 static inline void ieee80211_mod_tpt_led_trig(struct ieee80211_local *local,
71 ieee80211_tpt_led_trig_tx(struct ieee80211_local *local, int bytes)
74 if (atomic_read(&local->tpt_led_active))
75 local->tpt_led_trigger->tx_bytes += bytes;
80 ieee80211_tpt_led_trig_rx(struct ieee80211_local *local, int bytes)
83 if (atomic_read(&local->tpt_led_active))
84 local->tpt_led_trigger->rx_bytes += bytes;