staging: rtl8188eu: while loop replaced by for loop
Here is more suitable for loop. Signed-off-by: Ivan Safonov <insafonov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2b5a10a923
commit
72fb6c5a9d
1 changed files with 1 additions and 8 deletions
|
|
@ -366,20 +366,13 @@ struct wlan_network *rtw_get_oldest_wlan_network(struct __queue *scanned_queue)
|
|||
|
||||
phead = get_list_head(scanned_queue);
|
||||
|
||||
plist = phead->next;
|
||||
|
||||
while (1) {
|
||||
if (phead == plist)
|
||||
break;
|
||||
|
||||
for (plist = phead->next; plist != phead; plist = plist->next) {
|
||||
pwlan = container_of(plist, struct wlan_network, list);
|
||||
|
||||
if (!pwlan->fixed) {
|
||||
if (oldest == NULL || time_after(oldest->last_scanned, pwlan->last_scanned))
|
||||
oldest = pwlan;
|
||||
}
|
||||
|
||||
plist = plist->next;
|
||||
}
|
||||
return oldest;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue