mirror of https://gitee.com/openkylin/linux.git
[media] v4l2-async: Use proper list head for iteration over registered subdevs
This fixes regression introduced in commit b426b3a660
[media] V4L: Merge struct v4l2_async_subdev_list with struct v4l2_subdev
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
ef6672ea35
commit
ceedcc4ede
|
@ -199,7 +199,7 @@ void v4l2_async_notifier_unregister(struct v4l2_async_notifier *notifier)
|
|||
|
||||
list_del(¬ifier->list);
|
||||
|
||||
list_for_each_entry_safe(sd, tmp, ¬ifier->done, list) {
|
||||
list_for_each_entry_safe(sd, tmp, ¬ifier->done, async_list) {
|
||||
dev[i] = get_device(sd->dev);
|
||||
|
||||
v4l2_async_cleanup(sd);
|
||||
|
|
Loading…
Reference in New Issue