Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b7126fae authored by Larry Finger's avatar Larry Finger Committed by Greg Kroah-Hartman
Browse files

staging: rtl8723bs: Fix indenting mistakes in core/rtw_ieee80211.c



Smatch reports the following:

  CHECK   drivers/staging/rtl8723bs/core/rtw_ieee80211.c
drivers/staging/rtl8723bs/core/rtw_ieee80211.c:83 rtw_is_cckrates_included() warn: if statement not indented
drivers/staging/rtl8723bs/core/rtw_ieee80211.c:98 rtw_is_cckratesonly_included() warn: if statement not indented

These warnings are fixed with white-space changes.

Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9c63e986
Loading
Loading
Loading
Loading
+5 −8
Original line number Diff line number Diff line
@@ -97,14 +97,11 @@ uint rtw_is_cckratesonly_included(u8 *rate)
	while (rate[i] != 0) {
		if  ((((rate[i]) & 0x7f) != 2) && (((rate[i]) & 0x7f) != 4) &&
		     (((rate[i]) & 0x7f) != 11)  && (((rate[i]) & 0x7f) != 22))

			return false;

		i++;
	}

	return true;

}

int rtw_check_network_type(unsigned char *rate, int ratelen, int channel)