Commit 92ee2034 authored by Michael Straube's avatar Michael Straube Committed by Greg Kroah-Hartman
Browse files

staging: rtl8188eu: add spaces around operators in rtw_mlme_ext.c



Add missing spaces around operators to improve readability and clear
checkpatch issues.

Signed-off-by: default avatarMichael Straube <straube.linux@gmail.com>
Link: https://lore.kernel.org/r/20191214100955.16670-2-straube.linux@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent dc497b4b
Loading
Loading
Loading
Loading
+57 −56
Original line number Diff line number Diff line
@@ -3003,7 +3003,8 @@ static unsigned int OnAssocReq(struct adapter *padapter,
				pkt_len - WLAN_HDR_A3_LEN - ie_offset);
		if (p) {
			if (supportRateNum <= sizeof(supportRate)) {
				memcpy(supportRate+supportRateNum, p+2, ie_len);
				memcpy(supportRate + supportRateNum,
				       p + 2, ie_len);
				supportRateNum += ie_len;
			}
		}