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: Quytelda Kahja <quytelda@tamalin.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
71e9513b25
commit
5927cb347e
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user