mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 00:21:17 +00:00
wireless: Convert to list_for_each_entry_rcu()
Convert list_for_each_rcu() to list_for_each_entry_rcu() Signed-off-by: Roel Kluin <12o3l@tiscali.nl> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
b46b4ee034
commit
013b73faff
1 changed files with 3 additions and 3 deletions
|
@ -962,12 +962,12 @@ static char *time_delta(char buffer[], long time)
|
||||||
/* get Nth element of the linked list */
|
/* get Nth element of the linked list */
|
||||||
static struct strip *strip_get_idx(loff_t pos)
|
static struct strip *strip_get_idx(loff_t pos)
|
||||||
{
|
{
|
||||||
struct list_head *l;
|
struct strip *str;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
||||||
list_for_each_rcu(l, &strip_list) {
|
list_for_each_entry_rcu(str, &strip_list, list) {
|
||||||
if (pos == i)
|
if (pos == i)
|
||||||
return list_entry(l, struct strip, list);
|
return str;
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue