media: ipu3-cio2: Fix container_of() macro wrapper arguments
authorSakari Ailus <sakari.ailus@linux.intel.com>
Mon, 17 Apr 2023 09:29:59 +0000 (12:29 +0300)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Thu, 25 May 2023 14:21:22 +0000 (16:21 +0200)
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>
drivers/media/pci/intel/ipu3/ipu3-cio2-main.c

index 2c9d035..34984a7 100644 (file)
@@ -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,