staging: rtl8723bs: remove braces from single if statement

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

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Michael Straube
2018-07-08 12:38:55 +02:00
committed by Greg Kroah-Hartman
parent bea378608b
commit 86ef7175e3

View File

@@ -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;