summaryrefslogtreecommitdiffstats
path: root/drivers/media/i2c/ov7670.c
diff options
context:
space:
mode:
authorAkinobu Mita2017-11-24 15:40:44 +0100
committerMauro Carvalho Chehab2017-12-08 15:22:03 +0100
commit344aa836e813a6b097c23f2e0633dd17f62c2ed7 (patch)
tree09c07f148c3b8e00655d943096cb8781bba940e7 /drivers/media/i2c/ov7670.c
parentmedia: ARM: dts: nokia n900: enable autofocus (diff)
downloadkernel-qcow2-linux-344aa836e813a6b097c23f2e0633dd17f62c2ed7.tar.gz
kernel-qcow2-linux-344aa836e813a6b097c23f2e0633dd17f62c2ed7.tar.xz
kernel-qcow2-linux-344aa836e813a6b097c23f2e0633dd17f62c2ed7.zip
media: ov7670: use v4l2_async_unregister_subdev()
The sub-device for ov7670 is registered by v4l2_async_register_subdev(). So it should be unregistered by v4l2_async_unregister_subdev() instead of v4l2_device_unregister_subdev(). Cc: Jonathan Corbet <corbet@lwn.net> Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com> Reviewed-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@s-opensource.com>
Diffstat (limited to 'drivers/media/i2c/ov7670.c')
-rw-r--r--drivers/media/i2c/ov7670.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/ov7670.c b/drivers/media/i2c/ov7670.c
index 950a0acf85fb..b61d88e7f3eb 100644
--- a/drivers/media/i2c/ov7670.c
+++ b/drivers/media/i2c/ov7670.c
@@ -1820,7 +1820,7 @@ static int ov7670_remove(struct i2c_client *client)
struct v4l2_subdev *sd = i2c_get_clientdata(client);
struct ov7670_info *info = to_state(sd);
- v4l2_device_unregister_subdev(sd);
+ v4l2_async_unregister_subdev(sd);
v4l2_ctrl_handler_free(&info->hdl);
clk_disable_unprepare(info->clk);
#if defined(CONFIG_MEDIA_CONTROLLER)