media: i2c: ov5645: Use v4l2_async_register_subdev_sensor()
authorLad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Fri, 18 Oct 2024 15:32:24 +0000 (16:32 +0100)
committerHans Verkuil <hverkuil@xs4all.nl>
Thu, 7 Nov 2024 08:05:59 +0000 (09:05 +0100)
Utilize the v4l2_async_register_subdev_sensor() helper to register the
sub-device, as this facilitates parsing of firmware interfaces for remote
references.

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
drivers/media/i2c/ov5645.c

index ea2270bad95df060d4e8f89c161204bdaa94880d..a877fffbd2180e867273e016e69e2d417ae6f5b7 100644 (file)
@@ -1228,7 +1228,7 @@ static int ov5645_probe(struct i2c_client *client)
 
        ov5645_init_state(&ov5645->sd, NULL);
 
-       ret = v4l2_async_register_subdev(&ov5645->sd);
+       ret = v4l2_async_register_subdev_sensor(&ov5645->sd);
        if (ret < 0) {
                dev_err_probe(dev, ret, "could not register v4l2 device\n");
                goto err_pm_runtime;