diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2018-05-25 01:07:00 +0200 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2018-06-13 13:41:32 +0200 |
commit | aae28cefc279203c1d1bc460c831b0a557662945 (patch) | |
tree | 4e5e4c811d1bbf2d4d0a45bd5ffd063997fb902d /drivers/net/wireless/ath/ath5k/pcu.c | |
parent | ath10k: htt_tx: mark expected switch fall-throughs (diff) | |
download | linux-aae28cefc279203c1d1bc460c831b0a557662945.tar.xz linux-aae28cefc279203c1d1bc460c831b0a557662945.zip |
ath5k: mark expected switch fall-through
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/ath/ath5k/pcu.c')
-rw-r--r-- | drivers/net/wireless/ath/ath5k/pcu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath5k/pcu.c b/drivers/net/wireless/ath/ath5k/pcu.c index f23c851765df..05140d8baa36 100644 --- a/drivers/net/wireless/ath/ath5k/pcu.c +++ b/drivers/net/wireless/ath/ath5k/pcu.c @@ -670,6 +670,7 @@ ath5k_hw_init_beacon_timers(struct ath5k_hw *ah, u32 next_beacon, u32 interval) break; case NL80211_IFTYPE_ADHOC: AR5K_REG_ENABLE_BITS(ah, AR5K_TXCFG, AR5K_TXCFG_ADHOC_BCN_ATIM); + /* fall through */ default: /* On non-STA modes timer1 is used as next DMA * beacon alert (DBA) timer and timer2 as next |