mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 19:23:57 +08:00
staging: rtl8712: fix else after break or return warning
This patch fixes checkpatch.pl warning. WARNING: else is not generally useful after a break or return Signed-off-by: Dogukan Ergun <dogukan.ergun@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c5b72378a2
commit
07e9e619db
@ -813,8 +813,7 @@ static int r871x_wx_set_pmkid(struct net_device *dev,
|
||||
case IW_PMKSA_ADD:
|
||||
if (!memcmp(strIssueBssid, strZeroMacAddress, ETH_ALEN))
|
||||
return intReturn;
|
||||
else
|
||||
intReturn = true;
|
||||
intReturn = true;
|
||||
blInserted = false;
|
||||
/* overwrite PMKID */
|
||||
for (j = 0; j < NUM_PMKID_CACHE; j++) {
|
||||
|
Loading…
Reference in New Issue
Block a user