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

media: dvb-frontends/lgdt3306a: 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 006dfdbb
...@@ -2169,8 +2169,7 @@ static int lgdt3306a_deselect(struct i2c_mux_core *muxc, u32 chan) ...@@ -2169,8 +2169,7 @@ static int lgdt3306a_deselect(struct i2c_mux_core *muxc, u32 chan)
return lgdt3306a_i2c_gate_ctrl(&state->frontend, 0); return lgdt3306a_i2c_gate_ctrl(&state->frontend, 0);
} }
static int lgdt3306a_probe(struct i2c_client *client, static int lgdt3306a_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct lgdt3306a_config *config; struct lgdt3306a_config *config;
struct lgdt3306a_state *state; struct lgdt3306a_state *state;
...@@ -2250,7 +2249,7 @@ static struct i2c_driver lgdt3306a_driver = { ...@@ -2250,7 +2249,7 @@ static struct i2c_driver lgdt3306a_driver = {
.name = "lgdt3306a", .name = "lgdt3306a",
.suppress_bind_attrs = true, .suppress_bind_attrs = true,
}, },
.probe = lgdt3306a_probe, .probe_new = lgdt3306a_probe,
.remove = lgdt3306a_remove, .remove = lgdt3306a_remove,
.id_table = lgdt3306a_id_table, .id_table = lgdt3306a_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