Browse Source

staging: rtl8187se: else should follow close brace '}

This patch fixes the following checkpatch warning:
ERROR: else should follow close brace '}'

Signed-off-by: Teodora Baluta <teobaluta@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Teodora Baluta 12 years ago
parent
commit
69e222d98e
1 changed files with 1 additions and 2 deletions
  1. 1 2
      drivers/staging/rtl8187se/ieee80211/ieee80211_tx.c

+ 1 - 2
drivers/staging/rtl8187se/ieee80211/ieee80211_tx.c

@@ -428,8 +428,7 @@ int ieee80211_rtl_xmit(struct sk_buff *skb,
 		if (is_multicast_ether_addr(header.addr1)) {
 			frag_size = MAX_FRAG_THRESHOLD;
 			qos_ctl = QOS_CTL_NOTCONTAIN_ACK;
-		}
-		else {
+		} else {
 			/* default:392 */
 			frag_size = ieee->fts;
 			qos_ctl = 0;