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

Commit 5927cb34 authored by Quytelda Kahja's avatar Quytelda Kahja Committed by Greg Kroah-Hartman
Browse files

staging: ks7010: Fix line over 80 characters.



There is no reason for comment describing the BSSID check for loop
to be spaced so far to the right.  Move it above the for loop.

Signed-off-by: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 71e9513b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -777,7 +777,8 @@ void hostif_scan_indication(struct ks_wlan_private *priv)
	ap_info = (struct ap_info_t *)(priv->rxp);

	if (priv->scan_ind_count) {
		for (i = 0; i < priv->aplist.size; i++) {	/* bssid check */
		/* bssid check */
		for (i = 0; i < priv->aplist.size; i++) {
			if (memcmp(ap_info->bssid,
				   priv->aplist.ap[i].bssid, ETH_ALEN) != 0)
				continue;