mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 09:01:36 -04:00
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:
committed by
Greg Kroah-Hartman
parent
bea378608b
commit
86ef7175e3
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user