Commit ce087f31 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Hans Verkuil

media: dvb-frontends/stv6110x: Convert to i2c's .probe_new()

The probe function doesn't make use of the i2c_device_id * parameter so it
can be trivially converted.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
parent be95f69c
...@@ -406,8 +406,7 @@ static struct stv6110x_devctl *stv6110x_get_devctl(struct i2c_client *client) ...@@ -406,8 +406,7 @@ static struct stv6110x_devctl *stv6110x_get_devctl(struct i2c_client *client)
return stv6110x->devctl; return stv6110x->devctl;
} }
static int stv6110x_probe(struct i2c_client *client, static int stv6110x_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct stv6110x_config *config = client->dev.platform_data; struct stv6110x_config *config = client->dev.platform_data;
...@@ -481,7 +480,7 @@ static struct i2c_driver stv6110x_driver = { ...@@ -481,7 +480,7 @@ static struct i2c_driver stv6110x_driver = {
.name = "stv6110x", .name = "stv6110x",
.suppress_bind_attrs = true, .suppress_bind_attrs = true,
}, },
.probe = stv6110x_probe, .probe_new = stv6110x_probe,
.remove = stv6110x_remove, .remove = stv6110x_remove,
.id_table = stv6110x_id_table, .id_table = stv6110x_id_table,
}; };
......
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