aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtlwifi/phydm
diff options
context:
space:
mode:
authorNishka Dasgupta <nishka.dasgupta@yahoo.com>2019-03-31 01:18:16 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-04-01 19:19:48 +0200
commit19605872ae9822510aaa88f51c989f534b4c40f4 (patch)
tree744448e8c83f45276cc16749b059f57f8af46e87 /drivers/staging/rtlwifi/phydm
parentstaging: rtlwifi: phydm: Move operator to left hand side (diff)
downloadlinux-dev-19605872ae9822510aaa88f51c989f534b4c40f4.tar.xz
linux-dev-19605872ae9822510aaa88f51c989f534b4c40f4.zip
staging: rtlwifi: phydm: Move function arguments to previous line
Move function arguments to previous line to solve Checkpatch warning "Line should not end with a '('". Signed-off-by: Nishka Dasgupta <nishka.dasgupta@yahoo.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtlwifi/phydm')
-rw-r--r--drivers/staging/rtlwifi/phydm/phydm_debug.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/staging/rtlwifi/phydm/phydm_debug.c b/drivers/staging/rtlwifi/phydm/phydm_debug.c
index 0c60f16daa2a..5e0151036542 100644
--- a/drivers/staging/rtlwifi/phydm/phydm_debug.c
+++ b/drivers/staging/rtlwifi/phydm/phydm_debug.c
@@ -51,15 +51,13 @@ static inline void phydm_check_dmval_txagc(struct phy_dm_struct *dm, u32 used,
(power_index << 16) | (power_index << 8) |
(power_index);
for (i = 0; i < ODM_RATEVHTSS2MCS9; i += 4)
- status &= phydm_api_set_txagc(
- dm, power_index,
+ status &= phydm_api_set_txagc(dm, power_index,
(enum odm_rf_radio_path)
dm_value[1],
i, false);
} else if (dm->support_ic_type & ODM_RTL8197F) {
for (i = 0; i <= ODM_RATEMCS15; i++)
- status &= phydm_api_set_txagc(
- dm, power_index,
+ status &= phydm_api_set_txagc(dm, power_index,
(enum odm_rf_radio_path)
dm_value[1],
i, false);