Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5eb438c9 authored by Michael Straube's avatar Michael Straube Committed by Greg Kroah-Hartman
Browse files

staging: rtl8188eu: remove unnecessary parentheses



Remove unnecessary parentheses from if conditions.

Signed-off-by: default avatarMichael Straube <straube.linux@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ac588ce4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -12,8 +12,8 @@ bool rtw_iol_applied(struct adapter *adapter)
	if (adapter->registrypriv.fw_iol == 1)
		return true;

	if ((adapter->registrypriv.fw_iol == 2) &&
	    (!adapter_to_dvobj(adapter)->ishighspeed))
	if (adapter->registrypriv.fw_iol == 2 &&
	    !adapter_to_dvobj(adapter)->ishighspeed)
		return true;
	return false;
}