mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 03:06:50 -04:00
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:
committed by
Greg Kroah-Hartman
parent
2b5a10a923
commit
72fb6c5a9d
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user