diff options
author | Sylwester Nawrocki <s.nawrocki@samsung.com> | 2013-07-19 11:31:10 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2013-07-30 14:53:11 -0400 |
commit | e8419d0890efaccb93f9f274d9ba0aae91210e8c (patch) | |
tree | 1a1e3d3a08a3352c0d83e8d5c02fc1ec472e5360 /include/media | |
parent | e7359f8e660882fb2168609638163561eb2f50f0 (diff) |
[media] V4L: Rename subdev field of struct v4l2_async_notifier
This is a purely cosmetic change. Since the 'subdev' member
points to an array of subdevs make it more explicit by
renaming to the plural form.
Acked-and-tested-by: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/v4l2-async.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/media/v4l2-async.h b/include/media/v4l2-async.h index 82b29813f8be..8fac8eaca51a 100644 --- a/include/media/v4l2-async.h +++ b/include/media/v4l2-async.h | |||
@@ -77,7 +77,7 @@ struct v4l2_async_subdev_list { | |||
77 | /** | 77 | /** |
78 | * v4l2_async_notifier - v4l2_device notifier data | 78 | * v4l2_async_notifier - v4l2_device notifier data |
79 | * @num_subdevs:number of subdevices | 79 | * @num_subdevs:number of subdevices |
80 | * @subdev: array of pointers to subdevice descriptors | 80 | * @subdevs: array of pointers to subdevice descriptors |
81 | * @v4l2_dev: pointer to struct v4l2_device | 81 | * @v4l2_dev: pointer to struct v4l2_device |
82 | * @waiting: list of struct v4l2_async_subdev, waiting for their drivers | 82 | * @waiting: list of struct v4l2_async_subdev, waiting for their drivers |
83 | * @done: list of struct v4l2_async_subdev_list, already probed | 83 | * @done: list of struct v4l2_async_subdev_list, already probed |
@@ -88,7 +88,7 @@ struct v4l2_async_subdev_list { | |||
88 | */ | 88 | */ |
89 | struct v4l2_async_notifier { | 89 | struct v4l2_async_notifier { |
90 | unsigned int num_subdevs; | 90 | unsigned int num_subdevs; |
91 | struct v4l2_async_subdev **subdev; | 91 | struct v4l2_async_subdev **subdevs; |
92 | struct v4l2_device *v4l2_dev; | 92 | struct v4l2_device *v4l2_dev; |
93 | struct list_head waiting; | 93 | struct list_head waiting; |
94 | struct list_head done; | 94 | struct list_head done; |