2021-03-14 16:36:40

by Shreya Ajith

[permalink] [raw]
Subject: [PATCH v2] staging:rtl8723bs:core:rtw_wlan_util:fixed indentation coding style issue

Fixed the indentation of the else part of the conditional statement.

Signed-off-by: Shreya <[email protected]>
---
v1 -> v2:
Changed name in signed-off-by to match name in From

drivers/staging/rtl8723bs/core/rtw_wlan_util.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8723bs/core/rtw_wlan_util.c b/drivers/staging/rtl8723bs/core/rtw_wlan_util.c
index 975f2830e29e..4b5afaeac916 100644
--- a/drivers/staging/rtl8723bs/core/rtw_wlan_util.c
+++ b/drivers/staging/rtl8723bs/core/rtw_wlan_util.c
@@ -1760,7 +1760,7 @@ void update_wireless_mode(struct adapter *padapter)

if (pmlmeext->cur_wireless_mode & WIRELESS_11B)
update_mgnt_tx_rate(padapter, IEEE80211_CCK_RATE_1MB);
- else
+ else
update_mgnt_tx_rate(padapter, IEEE80211_OFDM_RATE_6MB);
}

--
2.25.1


2021-03-16 18:42:57

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH v2] staging:rtl8723bs:core:rtw_wlan_util:fixed indentation coding style issue

On Sun, Mar 14, 2021 at 09:58:55PM +0530, Shreya wrote:
> Fixed the indentation of the else part of the conditional statement.
>
> Signed-off-by: Shreya <[email protected]>
> ---
> v1 -> v2:
> Changed name in signed-off-by to match name in From

No, change it the other way around, you had your "real" name in the
signed-off-by line, fix your email client to also have that :)

Please try this again with a v3 patch.

thanks,

greg k-h