mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 18:21:24 +02:00
clockevents: Use dedicated list iterator variable
To move the list iterator variable into the list_for_each_entry_*() macro in the future it should be avoided to use the list iterator variable after the loop body. To *never* use the list iterator variable after the loop it was concluded to use a separate iterator variable. Signed-off-by: Jakob Koschel <jakobkoschel@gmail.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lore.kernel.org/all/CAHk-=wgRr_D8CB-D9Kg-c=EHreAsk5SqXPwr9Y7k9sA6cWXJ6w@mail.gmail.com/ Link: https://lore.kernel.org/r/20220331215707.883957-1-jakobkoschel@gmail.com
This commit is contained in:
parent
a2026e44ef
commit
2966a9918d
|
|
@ -690,7 +690,7 @@ static ssize_t unbind_device_store(struct device *dev,
|
||||||
{
|
{
|
||||||
char name[CS_NAME_LEN];
|
char name[CS_NAME_LEN];
|
||||||
ssize_t ret = sysfs_get_uname(buf, name, count);
|
ssize_t ret = sysfs_get_uname(buf, name, count);
|
||||||
struct clock_event_device *ce;
|
struct clock_event_device *ce = NULL, *iter;
|
||||||
|
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
@ -698,9 +698,10 @@ static ssize_t unbind_device_store(struct device *dev,
|
||||||
ret = -ENODEV;
|
ret = -ENODEV;
|
||||||
mutex_lock(&clockevents_mutex);
|
mutex_lock(&clockevents_mutex);
|
||||||
raw_spin_lock_irq(&clockevents_lock);
|
raw_spin_lock_irq(&clockevents_lock);
|
||||||
list_for_each_entry(ce, &clockevent_devices, list) {
|
list_for_each_entry(iter, &clockevent_devices, list) {
|
||||||
if (!strcmp(ce->name, name)) {
|
if (!strcmp(iter->name, name)) {
|
||||||
ret = __clockevents_try_unbind(ce, dev->id);
|
ret = __clockevents_try_unbind(iter, dev->id);
|
||||||
|
ce = iter;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user