staging: rtl8187se: else should follow close brace '}
authorTeodora Baluta <teobaluta@gmail.com>
Mon, 21 Oct 2013 23:37:17 +0000 (02:37 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 28 Oct 2013 21:17:56 +0000 (14:17 -0700)
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>
drivers/staging/rtl8187se/ieee80211/ieee80211_tx.c

index 4c9ac43b28e9166aadcee5573bfb7ed5dbfd99c3..ae725944a9c008b1bd25e25301db8c2463b0aa30 100644 (file)
@@ -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;
This page took 0.024801 seconds and 5 git commands to generate.