staging: rtlwifi: rtl8822be: Balance braces in else statement
authorFrank A. Cancio Bello <frank@generalsoftwareinc.com>
Wed, 18 Oct 2017 03:30:20 +0000 (23:30 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Oct 2017 13:33:15 +0000 (15:33 +0200)
Add braces to else statements to comply with section 3) of  'Linux
kernel coding style' and avoid the following checkpatch message:
'CHECK: Unbalanced braces around else statement'

Credits to checkpatch.

Signed-off-by: Frank A. Cancio Bello <frank@generalsoftwareinc.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtlwifi/rtl8822be/fw.c
drivers/staging/rtlwifi/rtl8822be/phy.c

index 8e24da1..02f5004 100644 (file)
@@ -766,9 +766,10 @@ void rtl8822be_set_fw_rsvdpagepkt(struct ieee80211_hw *hw, bool b_dl_finished)
                rtl8822be_fill_h2c_cmd(hw, H2C_8822B_RSVDPAGE,
                                       sizeof(u1_rsvd_page_loc),
                                       u1_rsvd_page_loc);
-       } else
+       } else {
                RT_TRACE(rtlpriv, COMP_ERR, DBG_WARNING,
                         "Set RSVD page location to Fw FAIL!!!!!!.\n");
+       }
 }
 
 /* Should check FW support p2p or not. */
index 921226b..589ef15 100644 (file)
@@ -1562,9 +1562,10 @@ static char _rtl8822be_phy_get_txpower_limit(struct ieee80211_hw *hw, u8 band,
                                                      [channel_index]
                                                      [rate_section]
                                                      [channel_index][rf_path];
-       } else
+       } else {
                RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD,
                         "No power limit table of the specified band\n");
+       }
 
        return power_limit;
 }