diff options
author | Gabriela Bittencourt <gabrielabittencourt00@gmail.com> | 2019-04-06 19:25:28 -0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-04-16 13:44:30 +0200 |
commit | 8eee2c467df935dd8ff2ff761e8626e81c302e41 (patch) | |
tree | d54ac8f44fac0071d529ef75b5419b7904fb5a54 /drivers/staging/rtl8723bs | |
parent | 031ba1fd9172dba01e0193b1d047a2af4868a101 (diff) | |
download | linux-8eee2c467df935dd8ff2ff761e8626e81c302e41.tar.gz linux-8eee2c467df935dd8ff2ff761e8626e81c302e41.tar.bz2 linux-8eee2c467df935dd8ff2ff761e8626e81c302e41.zip |
Staging: hal: hal_com_phycfg: fixed a coding style issue
Added a blank line after declarations.
Signed-off-by: Gabriela Bittencourt <gabrielabittencourt00@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8723bs')
-rw-r--r-- | drivers/staging/rtl8723bs/hal/hal_com_phycfg.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/staging/rtl8723bs/hal/hal_com_phycfg.c b/drivers/staging/rtl8723bs/hal/hal_com_phycfg.c index fc49cdfcd477..336764464e7d 100644 --- a/drivers/staging/rtl8723bs/hal/hal_com_phycfg.c +++ b/drivers/staging/rtl8723bs/hal/hal_com_phycfg.c @@ -1749,6 +1749,7 @@ s8 phy_get_tx_pwr_lmt(struct adapter *adapter, u32 reg_pwr_tbl_sel, if (band_type == BAND_ON_2_4G) { s8 limits[10] = {0}; u8 i = 0; + for (i = 0; i < MAX_REGULATION_NUM; i++) limits[i] = hal_data->TxPwrLimit_2_4G[i] [idx_bandwidth] @@ -1766,6 +1767,7 @@ s8 phy_get_tx_pwr_lmt(struct adapter *adapter, u32 reg_pwr_tbl_sel, } else if (band_type == BAND_ON_5G) { s8 limits[10] = {0}; u8 i = 0; + for (i = 0; i < MAX_REGULATION_NUM; ++i) limits[i] = hal_data->TxPwrLimit_5G[i] [idx_bandwidth] |