Message ID | 1623740110-15764-1-git-send-email-zou_wei@huawei.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [-next] edac: Convert list_for_each to entry variant | expand |
On Tue, Jun 15, 2021 at 02:55:10PM +0800, Zou Wei wrote: > convert list_for_each() to list_for_each_entry() where > applicable. That conversion is applicable to one more place in that file...
diff --git a/drivers/edac/edac_device.c b/drivers/edac/edac_device.c index 8c4d947..e8b33c3 100644 --- a/drivers/edac/edac_device.c +++ b/drivers/edac/edac_device.c @@ -245,13 +245,10 @@ EXPORT_SYMBOL_GPL(edac_device_free_ctl_info); static struct edac_device_ctl_info *find_edac_device_by_dev(struct device *dev) { struct edac_device_ctl_info *edac_dev; - struct list_head *item; edac_dbg(0, "\n"); - list_for_each(item, &edac_device_list) { - edac_dev = list_entry(item, struct edac_device_ctl_info, link); - + list_for_each_entry(edac_dev, &edac_device_list, link) { if (edac_dev->dev == dev) return edac_dev; }
convert list_for_each() to list_for_each_entry() where applicable. Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Zou Wei <zou_wei@huawei.com> --- drivers/edac/edac_device.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-)