mirror of https://gitee.com/openkylin/linux.git
staging: rtl8712: Remove unnecessary else after return
This patch fixes the checkpatch warning that else is not generally useful after a break or return. This was done using Coccinelle: @@ expression e2; statement s1; @@ if(e2) { ... return ...; } -else s1 Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8558ace8b7
commit
336e8320e9
|
@ -468,8 +468,7 @@ static int is_desired_network(struct _adapter *adapter,
|
||||||
pnetwork->network.IELength, wps_ie,
|
pnetwork->network.IELength, wps_ie,
|
||||||
&wps_ielen))
|
&wps_ielen))
|
||||||
return true;
|
return true;
|
||||||
else
|
return false;
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
if ((psecuritypriv->PrivacyAlgrthm != _NO_PRIVACY_) &&
|
if ((psecuritypriv->PrivacyAlgrthm != _NO_PRIVACY_) &&
|
||||||
(pnetwork->network.Privacy == 0))
|
(pnetwork->network.Privacy == 0))
|
||||||
|
|
Loading…
Reference in New Issue