Commit 66ec7a97 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Mauro Carvalho Chehab

media: ipu3-cio2: Introduce to_sensor_asd() helper macro

Provide to_sensor_asd() helper macro and convert users to make
code easier to read.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 98508d68
...@@ -1372,6 +1372,8 @@ struct sensor_async_subdev { ...@@ -1372,6 +1372,8 @@ struct sensor_async_subdev {
struct csi2_bus_info csi2; struct csi2_bus_info csi2;
}; };
#define to_sensor_asd(asd) container_of(asd, struct sensor_async_subdev, asd)
/* The .bound() notifier callback when a match is found */ /* The .bound() notifier callback when a match is found */
static int cio2_notifier_bound(struct v4l2_async_notifier *notifier, static int cio2_notifier_bound(struct v4l2_async_notifier *notifier,
struct v4l2_subdev *sd, struct v4l2_subdev *sd,
...@@ -1379,8 +1381,7 @@ static int cio2_notifier_bound(struct v4l2_async_notifier *notifier, ...@@ -1379,8 +1381,7 @@ static int cio2_notifier_bound(struct v4l2_async_notifier *notifier,
{ {
struct cio2_device *cio2 = container_of(notifier, struct cio2_device *cio2 = container_of(notifier,
struct cio2_device, notifier); struct cio2_device, notifier);
struct sensor_async_subdev *s_asd = container_of(asd, struct sensor_async_subdev *s_asd = to_sensor_asd(asd);
struct sensor_async_subdev, asd);
struct cio2_queue *q; struct cio2_queue *q;
if (cio2->queue[s_asd->csi2.port].sensor) if (cio2->queue[s_asd->csi2.port].sensor)
...@@ -1402,8 +1403,7 @@ static void cio2_notifier_unbind(struct v4l2_async_notifier *notifier, ...@@ -1402,8 +1403,7 @@ static void cio2_notifier_unbind(struct v4l2_async_notifier *notifier,
{ {
struct cio2_device *cio2 = container_of(notifier, struct cio2_device *cio2 = container_of(notifier,
struct cio2_device, notifier); struct cio2_device, notifier);
struct sensor_async_subdev *s_asd = container_of(asd, struct sensor_async_subdev *s_asd = to_sensor_asd(asd);
struct sensor_async_subdev, asd);
cio2->queue[s_asd->csi2.port].sensor = NULL; cio2->queue[s_asd->csi2.port].sensor = NULL;
} }
...@@ -1421,7 +1421,7 @@ static int cio2_notifier_complete(struct v4l2_async_notifier *notifier) ...@@ -1421,7 +1421,7 @@ static int cio2_notifier_complete(struct v4l2_async_notifier *notifier)
int ret; int ret;
list_for_each_entry(asd, &cio2->notifier.asd_list, asd_list) { list_for_each_entry(asd, &cio2->notifier.asd_list, asd_list) {
s_asd = container_of(asd, struct sensor_async_subdev, asd); s_asd = to_sensor_asd(asd);
q = &cio2->queue[s_asd->csi2.port]; q = &cio2->queue[s_asd->csi2.port];
for (pad = 0; pad < q->sensor->entity.num_pads; pad++) for (pad = 0; pad < q->sensor->entity.num_pads; pad++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment