Commit f88b50ad authored by Sachin Kamat's avatar Sachin Kamat Committed by Mauro Carvalho Chehab

[media] soc_camera: tw9910: Remove empty function

After the switch to devm_* functions, the 'remove' function does
not do anything. Delete it.
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Cc: Kuninori Morimoto <morimoto.kuninori@renesas.com>
Signed-off-by: default avatarGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent be843eeb
...@@ -925,11 +925,6 @@ static int tw9910_probe(struct i2c_client *client, ...@@ -925,11 +925,6 @@ static int tw9910_probe(struct i2c_client *client,
return tw9910_video_probe(client); return tw9910_video_probe(client);
} }
static int tw9910_remove(struct i2c_client *client)
{
return 0;
}
static const struct i2c_device_id tw9910_id[] = { static const struct i2c_device_id tw9910_id[] = {
{ "tw9910", 0 }, { "tw9910", 0 },
{ } { }
...@@ -941,7 +936,6 @@ static struct i2c_driver tw9910_i2c_driver = { ...@@ -941,7 +936,6 @@ static struct i2c_driver tw9910_i2c_driver = {
.name = "tw9910", .name = "tw9910",
}, },
.probe = tw9910_probe, .probe = tw9910_probe,
.remove = tw9910_remove,
.id_table = tw9910_id, .id_table = tw9910_id,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment