Commit 25857a00 authored by Sakari Ailus's avatar Sakari Ailus Committed by Hans Verkuil
Browse files

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: default avatarBingbu Cao <bingbu.cao@intel.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
parent 950e9a29
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1375,7 +1375,8 @@ struct sensor_async_subdev {
	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 */
static int cio2_notifier_bound(struct v4l2_async_notifier *notifier,