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>
                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. */
 
                                                      [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;
 }