Commit 8400553b authored by Martin Homuth's avatar Martin Homuth Committed by Greg Kroah-Hartman
Browse files

staging: rtl8712: style fix unneeded else



This patch fixes a coding style issues in the rtl8712 module as noted
by checkpatch.pl where an unnecessary else is used.

It fixes the following checkpatch.pl warning:

WARNING: else is not generally useful after a break or return

Signed-off-by: default avatarMartin Homuth <martin@martinhomuth.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e34fc47a
Loading
Loading
Loading
Loading
+35 −37
Original line number Diff line number Diff line
@@ -55,6 +55,7 @@ static u8 do_join(struct _adapter *padapter)
	u8 *pibss = NULL;
	struct	mlme_priv	*pmlmepriv = &(padapter->mlmepriv);
	struct  __queue	*queue	= &(pmlmepriv->scanned_queue);
	int ret;

	phead = &queue->queue;
	plist = phead->next;
@@ -74,8 +75,7 @@ static u8 do_join(struct _adapter *padapter)
		if (!pmlmepriv->sitesurveyctrl.traffic_busy)
			r8712_sitesurvey_cmd(padapter, &pmlmepriv->assoc_ssid);
		return true;
	} else {
		int ret;
	}

	ret = r8712_select_and_join_from_scan(pmlmepriv);
	if (ret == _SUCCESS) {
@@ -90,8 +90,7 @@ static u8 do_join(struct _adapter *padapter)
			struct wlan_bssid_ex *pdev_network =
				&(padapter->registrypriv.dev_network);
			pmlmepriv->fw_state = WIFI_ADHOC_MASTER_STATE;
				pibss = padapter->registrypriv.dev_network.
					MacAddress;
			pibss = padapter->registrypriv.dev_network.MacAddress;
			memcpy(&pdev_network->Ssid,
			       &pmlmepriv->assoc_ssid,
			       sizeof(struct ndis_802_11_ssid));
@@ -114,7 +113,6 @@ static u8 do_join(struct _adapter *padapter)
						     &pmlmepriv->assoc_ssid);
		}
	}
	}
	return true;
}