Commit 404ba3f0 authored by Joe Perches's avatar Joe Perches Committed by Linus Torvalds

ath5k: Add missing breaks in switch/case

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Acked-by: default avatarPavel Roskin <proski@gnu.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 05801817
......@@ -107,10 +107,13 @@ ath5k_hw_setup_2word_tx_desc(struct ath5k_hw *ah, struct ath5k_desc *desc,
case AR5K_PKT_TYPE_BEACON:
case AR5K_PKT_TYPE_PROBE_RESP:
frame_type = AR5K_AR5210_TX_DESC_FRAME_TYPE_NO_DELAY;
break;
case AR5K_PKT_TYPE_PIFS:
frame_type = AR5K_AR5210_TX_DESC_FRAME_TYPE_PIFS;
break;
default:
frame_type = type;
break;
}
tx_ctl->tx_control_0 |=
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment