Commit 86ef7175 authored by Michael Straube's avatar Michael Straube Committed by Greg Kroah-Hartman
Browse files

staging: rtl8723bs: remove braces from single if statement



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

Signed-off-by: default avatarMichael Straube <straube.linux@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bea37860
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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;