media: ov5648: Don't pack controls struct
authorSakari Ailus <sakari.ailus@linux.intel.com>
Mon, 10 Jan 2022 16:16:51 +0000 (17:16 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 8 Apr 2022 12:23:14 +0000 (14:23 +0200)
[ Upstream commit edd4fbff5378a8103470304809195dc8f4b1d42a ]

Don't pack the driver specific struct containing control pointers. This
lead to potential alignment issues when working with the pointers.

Reported-by: kernel test robot <lkp@intel.com>
Fixes: e43ccb0a045f ("media: i2c: Add support for the OV5648 image sensor")
Reviewed-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/media/i2c/ov5648.c

index 947d437ed0efe2111e3f732b9873f1d56c5459da..78040f0ac02f2aad8e85db5ef26ff0004d5a84fe 100644 (file)
@@ -639,7 +639,7 @@ struct ov5648_ctrls {
        struct v4l2_ctrl *pixel_rate;
 
        struct v4l2_ctrl_handler handler;
-} __packed;
+};
 
 struct ov5648_sensor {
        struct device *dev;