media: i2c: ov08x40: Make remove callback return void

In commit ed5c2f5fd1 ("i2c: Make remove callback return void") drivers
were updated to remove the return value of the remove callback, and
return void.

The OV08x40 was added after this commit but was not compile tested at
the time due to a KConfig issue, and this warning was missed.

Reported-by: kernel test robot <lkp@intel.com>
Fixes: 38fc5136ac ("media: i2c: Add ov08x40 image sensor driver")
Signed-off-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
Kieran Bingham 2022-11-21 17:39:50 +00:00 committed by Mauro Carvalho Chehab
parent 483af3fe90
commit f54f5fd05e

View file

@ -3281,7 +3281,7 @@ static int ov08x40_probe(struct i2c_client *client)
return ret;
}
static int ov08x40_remove(struct i2c_client *client)
static void ov08x40_remove(struct i2c_client *client)
{
struct v4l2_subdev *sd = i2c_get_clientdata(client);
struct ov08x40 *ov08x = to_ov08x40(sd);
@ -3292,8 +3292,6 @@ static int ov08x40_remove(struct i2c_client *client)
pm_runtime_disable(&client->dev);
pm_runtime_set_suspended(&client->dev);
return 0;
}
static const struct dev_pm_ops ov08x40_pm_ops = {