media: ipu3-cio2: Fix container_of() macro wrapper arguments
The argument of the to_sensor_asd() is called the same as the field name for the container_of() macro, so it only works if the argument name is "asd". Fix it. Also switch to container_of_const(). Reviewed-by: Bingbu Cao <bingbu.cao@intel.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
parent
950e9a295b
commit
25857a007d
@ -1375,7 +1375,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)
|
#define to_sensor_asd(__asd) \
|
||||||
|
container_of_const(__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,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user