media: i2c: ov5645: Call ov5645_entity_init_cfg() before registering the subdev
authorLad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Mon, 31 Oct 2022 23:22:02 +0000 (23:22 +0000)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Fri, 25 Nov 2022 06:49:15 +0000 (06:49 +0000)
Make sure we call ov5645_entity_init_cfg() before registering the subdev
to make sure default formats are set up.

Suggested-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/i2c/ov5645.c

index 0a889283da36862acd54bd280a12bceac307252a..c8999fc4f26fdb1761eda454941d35efdd5a3402 100644 (file)
@@ -1220,6 +1220,8 @@ static int ov5645_probe(struct i2c_client *client)
        pm_runtime_get_noresume(dev);
        pm_runtime_enable(dev);
 
+       ov5645_entity_init_cfg(&ov5645->sd, NULL);
+
        ret = v4l2_async_register_subdev(&ov5645->sd);
        if (ret < 0) {
                dev_err(dev, "could not register v4l2 device\n");
@@ -1231,8 +1233,6 @@ static int ov5645_probe(struct i2c_client *client)
        pm_runtime_mark_last_busy(dev);
        pm_runtime_put_autosuspend(dev);
 
-       ov5645_entity_init_cfg(&ov5645->sd, NULL);
-
        return 0;
 
 err_pm_runtime: