[PATCH 6/6] staging: rtl8723bs: remove braces from single if statement

From: Michael Straube
Date: Sun Jul 08 2018 - 06:39:56 EST


Remove braces from single if statement to follow kernel coding style.

Signed-off-by: Michael Straube <straube.linux@xxxxxxxxx>
---
drivers/staging/rtl8723bs/core/rtw_ieee80211.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/rtl8723bs/core/rtw_ieee80211.c b/drivers/staging/rtl8723bs/core/rtw_ieee80211.c
index a4f9e2b90b08..3f1c7bb0eb9f 100644
--- a/drivers/staging/rtl8723bs/core/rtw_ieee80211.c
+++ b/drivers/staging/rtl8723bs/core/rtw_ieee80211.c
@@ -149,9 +149,8 @@ u8 *rtw_get_ie(u8 *pbuf, sint index, sint *len, sint limit)
sint tmp, i;
u8 *p;

- if (limit < 1) {
+ if (limit < 1)
return NULL;
- }

p = pbuf;
i = 0;
--
2.18.0