mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 06:18:45 -04:00
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:
committed by
Greg Kroah-Hartman
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;
|
||||
|
||||
Reference in New Issue
Block a user