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

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

staging: rtl8723bs: Fix indenting problems in core/rtw_odm.c



Smatch reports the following:

  CHECK   drivers/staging/rtl8723bs/core/rtw_odm.c
drivers/staging/rtl8723bs/core/rtw_odm.c:109 rtw_odm_dbg_comp_msg() warn: if statement not indented
drivers/staging/rtl8723bs/core/rtw_odm.c:146 rtw_odm_ability_msg() warn: if statement not indented

Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ef9209b6
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -108,7 +108,8 @@ void rtw_odm_dbg_comp_msg(void *sel, struct adapter *adapter)
	for (i = 0; i < RTW_ODM_COMP_MAX; i++) {
		if (odm_comp_str[i])
			DBG_871X_SEL_NL(sel, "%cBIT%-2d %s\n",
			(BIT0 << i) & dbg_comp ? '+' : ' ', i, odm_comp_str[i]);
					(BIT0 << i) & dbg_comp ? '+' : ' ',
					i, odm_comp_str[i]);
	}
}

@@ -145,7 +146,8 @@ void rtw_odm_ability_msg(void *sel, struct adapter *adapter)
	for (i = 0; i < RTW_ODM_ABILITY_MAX; i++) {
		if (odm_ability_str[i])
			DBG_871X_SEL_NL(sel, "%cBIT%-2d %s\n",
			(BIT0 << i) & ability ? '+' : ' ', i, odm_ability_str[i]);
					(BIT0 << i) & ability ? '+' : ' ', i,
					odm_ability_str[i]);
	}
}