media: Switch i2c drivers back to use .probe()

After commit b8a1a4cd5a ("i2c: Provide a temporary .probe_new()
call-back type"), all drivers being converted to .probe_new() and then
commit 03c835f498 ("i2c: Switch .probe() to not take an id parameter")
convert back to (the new) .probe() to be able to eventually drop
.probe_new() from struct i2c_driver.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
Uwe Kleine-König 2023-05-14 14:04:07 +02:00 committed by Hans Verkuil
parent 72a6127e93
commit aaeb31c00e
181 changed files with 188 additions and 188 deletions

View file

@ -591,7 +591,7 @@ static struct i2c_driver ch7322_i2c_driver = {
.name = "ch7322",
.of_match_table = of_match_ptr(ch7322_of_match),
},
.probe_new = ch7322_probe,
.probe = ch7322_probe,
.remove = ch7322_remove,
};

View file

@ -266,7 +266,7 @@ static struct i2c_driver a8293_driver = {
.name = "a8293",
.suppress_bind_attrs = true,
},
.probe_new = a8293_probe,
.probe = a8293_probe,
.remove = a8293_remove,
.id_table = a8293_id_table,
};

View file

@ -1563,7 +1563,7 @@ static struct i2c_driver af9013_driver = {
.name = "af9013",
.suppress_bind_attrs = true,
},
.probe_new = af9013_probe,
.probe = af9013_probe,
.remove = af9013_remove,
.id_table = af9013_id_table,
};

View file

@ -1183,7 +1183,7 @@ static struct i2c_driver af9033_driver = {
.name = "af9033",
.suppress_bind_attrs = true,
},
.probe_new = af9033_probe,
.probe = af9033_probe,
.remove = af9033_remove,
.id_table = af9033_id_table,
};

View file

@ -776,7 +776,7 @@ static struct i2c_driver au8522_driver = {
.driver = {
.name = "au8522",
},
.probe_new = au8522_probe,
.probe = au8522_probe,
.remove = au8522_remove,
.id_table = au8522_id,
};

View file

@ -681,7 +681,7 @@ static struct i2c_driver cxd2099_driver = {
.driver = {
.name = "cxd2099",
},
.probe_new = cxd2099_probe,
.probe = cxd2099_probe,
.remove = cxd2099_remove,
.id_table = cxd2099_id,
};

View file

@ -733,7 +733,7 @@ static struct i2c_driver cxd2820r_driver = {
.name = "cxd2820r",
.suppress_bind_attrs = true,
},
.probe_new = cxd2820r_probe,
.probe = cxd2820r_probe,
.remove = cxd2820r_remove,
.id_table = cxd2820r_id_table,
};

View file

@ -942,7 +942,7 @@ static struct i2c_driver dvb_pll_driver = {
.driver = {
.name = "dvb_pll",
},
.probe_new = dvb_pll_probe,
.probe = dvb_pll_probe,
.remove = dvb_pll_remove,
.id_table = dvb_pll_id,
};

View file

@ -1110,7 +1110,7 @@ static struct i2c_driver helene_driver = {
.driver = {
.name = "helene",
},
.probe_new = helene_probe,
.probe = helene_probe,
.id_table = helene_id,
};
module_i2c_driver(helene_driver);

View file

@ -2249,7 +2249,7 @@ static struct i2c_driver lgdt3306a_driver = {
.name = "lgdt3306a",
.suppress_bind_attrs = true,
},
.probe_new = lgdt3306a_probe,
.probe = lgdt3306a_probe,
.remove = lgdt3306a_remove,
.id_table = lgdt3306a_id_table,
};

View file

@ -993,7 +993,7 @@ static struct i2c_driver lgdt330x_driver = {
.name = "lgdt330x",
.suppress_bind_attrs = true,
},
.probe_new = lgdt330x_probe,
.probe = lgdt330x_probe,
.remove = lgdt330x_remove,
.id_table = lgdt330x_id_table,
};

View file

@ -1941,7 +1941,7 @@ static struct i2c_driver m88ds3103_driver = {
.name = "m88ds3103",
.suppress_bind_attrs = true,
},
.probe_new = m88ds3103_probe,
.probe = m88ds3103_probe,
.remove = m88ds3103_remove,
.id_table = m88ds3103_id_table,
};

View file

@ -800,7 +800,7 @@ static struct i2c_driver mn88443x_driver = {
.name = "mn88443x",
.of_match_table = mn88443x_of_match,
},
.probe_new = mn88443x_probe,
.probe = mn88443x_probe,
.remove = mn88443x_remove,
.id_table = mn88443x_i2c_id,
};

View file

@ -718,7 +718,7 @@ static struct i2c_driver mn88472_driver = {
.name = "mn88472",
.suppress_bind_attrs = true,
},
.probe_new = mn88472_probe,
.probe = mn88472_probe,
.remove = mn88472_remove,
.id_table = mn88472_id_table,
};

View file

@ -753,7 +753,7 @@ static struct i2c_driver mn88473_driver = {
.name = "mn88473",
.suppress_bind_attrs = true,
},
.probe_new = mn88473_probe,
.probe = mn88473_probe,
.remove = mn88473_remove,
.id_table = mn88473_id_table,
};

View file

@ -1355,7 +1355,7 @@ static struct i2c_driver mxl692_driver = {
.driver = {
.name = "mxl692",
},
.probe_new = mxl692_probe,
.probe = mxl692_probe,
.remove = mxl692_remove,
.id_table = mxl692_id_table,
};

View file

@ -886,7 +886,7 @@ static struct i2c_driver rtl2830_driver = {
.name = "rtl2830",
.suppress_bind_attrs = true,
},
.probe_new = rtl2830_probe,
.probe = rtl2830_probe,
.remove = rtl2830_remove,
.id_table = rtl2830_id_table,
};

View file

@ -1135,7 +1135,7 @@ static struct i2c_driver rtl2832_driver = {
.name = "rtl2832",
.suppress_bind_attrs = true,
},
.probe_new = rtl2832_probe,
.probe = rtl2832_probe,
.remove = rtl2832_remove,
.id_table = rtl2832_id_table,
};

View file

@ -1292,7 +1292,7 @@ static struct i2c_driver si2165_driver = {
.driver = {
.name = "si2165",
},
.probe_new = si2165_probe,
.probe = si2165_probe,
.remove = si2165_remove,
.id_table = si2165_id_table,
};

View file

@ -798,7 +798,7 @@ static struct i2c_driver si2168_driver = {
.name = "si2168",
.suppress_bind_attrs = true,
},
.probe_new = si2168_probe,
.probe = si2168_probe,
.remove = si2168_remove,
.id_table = si2168_id_table,
};

View file

@ -416,7 +416,7 @@ static struct i2c_driver sp2_driver = {
.driver = {
.name = "sp2",
},
.probe_new = sp2_probe,
.probe = sp2_probe,
.remove = sp2_remove,
.id_table = sp2_id,
};

View file

@ -5084,7 +5084,7 @@ static struct i2c_driver stv090x_driver = {
.name = "stv090x",
.suppress_bind_attrs = true,
},
.probe_new = stv090x_probe,
.probe = stv090x_probe,
.remove = stv090x_remove,
.id_table = stv090x_id_table,
};

View file

@ -480,7 +480,7 @@ static struct i2c_driver stv6110x_driver = {
.name = "stv6110x",
.suppress_bind_attrs = true,
},
.probe_new = stv6110x_probe,
.probe = stv6110x_probe,
.remove = stv6110x_remove,
.id_table = stv6110x_id_table,
};

View file

@ -840,7 +840,7 @@ static struct i2c_driver tc90522_driver = {
.driver = {
.name = "tc90522",
},
.probe_new = tc90522_probe,
.probe = tc90522_probe,
.remove = tc90522_remove,
.id_table = tc90522_id,
};

View file

@ -1240,7 +1240,7 @@ static struct i2c_driver tda10071_driver = {
.name = "tda10071",
.suppress_bind_attrs = true,
},
.probe_new = tda10071_probe,
.probe = tda10071_probe,
.remove = tda10071_remove,
.id_table = tda10071_id_table,
};

View file

@ -720,7 +720,7 @@ static struct i2c_driver ts2020_driver = {
.driver = {
.name = "ts2020",
},
.probe_new = ts2020_probe,
.probe = ts2020_probe,
.remove = ts2020_remove,
.id_table = ts2020_id_table,
};

View file

@ -370,7 +370,7 @@ static struct i2c_driver ad5820_i2c_driver = {
.pm = &ad5820_pm,
.of_match_table = ad5820_of_table,
},
.probe_new = ad5820_probe,
.probe = ad5820_probe,
.remove = ad5820_remove,
.id_table = ad5820_id_table,
};

View file

@ -535,7 +535,7 @@ static struct i2c_driver adp1653_i2c_driver = {
.name = ADP1653_NAME,
.pm = &adp1653_pm_ops,
},
.probe_new = adp1653_probe,
.probe = adp1653_probe,
.remove = adp1653_remove,
.id_table = adp1653_id_table,
};

View file

@ -387,7 +387,7 @@ static struct i2c_driver adv7170_driver = {
.driver = {
.name = "adv7170",
},
.probe_new = adv7170_probe,
.probe = adv7170_probe,
.remove = adv7170_remove,
.id_table = adv7170_id,
};

View file

@ -442,7 +442,7 @@ static struct i2c_driver adv7175_driver = {
.driver = {
.name = "adv7175",
},
.probe_new = adv7175_probe,
.probe = adv7175_probe,
.remove = adv7175_remove,
.id_table = adv7175_id,
};

View file

@ -1610,7 +1610,7 @@ static struct i2c_driver adv7180_driver = {
.pm = ADV7180_PM_OPS,
.of_match_table = of_match_ptr(adv7180_of_id),
},
.probe_new = adv7180_probe,
.probe = adv7180_probe,
.remove = adv7180_remove,
.id_table = adv7180_id,
};

View file

@ -631,7 +631,7 @@ static struct i2c_driver adv7183_driver = {
.driver = {
.name = "adv7183",
},
.probe_new = adv7183_probe,
.probe = adv7183_probe,
.remove = adv7183_remove,
.id_table = adv7183_id,
};

View file

@ -521,7 +521,7 @@ static struct i2c_driver adv7343_driver = {
.of_match_table = of_match_ptr(adv7343_of_match),
.name = "adv7343",
},
.probe_new = adv7343_probe,
.probe = adv7343_probe,
.remove = adv7343_remove,
.id_table = adv7343_id,
};

View file

@ -455,7 +455,7 @@ static struct i2c_driver adv7393_driver = {
.driver = {
.name = "adv7393",
},
.probe_new = adv7393_probe,
.probe = adv7393_probe,
.remove = adv7393_remove,
.id_table = adv7393_id,
};

View file

@ -847,7 +847,7 @@ static struct i2c_driver adv748x_driver = {
.of_match_table = adv748x_of_table,
.pm = &adv748x_pm_ops,
},
.probe_new = adv748x_probe,
.probe = adv748x_probe,
.remove = adv748x_remove,
};

View file

@ -1957,7 +1957,7 @@ static struct i2c_driver adv7511_driver = {
.driver = {
.name = "adv7511-v4l2",
},
.probe_new = adv7511_probe,
.probe = adv7511_probe,
.remove = adv7511_remove,
.id_table = adv7511_id,
};

View file

@ -3689,7 +3689,7 @@ static struct i2c_driver adv76xx_driver = {
.name = "adv7604",
.of_match_table = of_match_ptr(adv76xx_of_id),
},
.probe_new = adv76xx_probe,
.probe = adv76xx_probe,
.remove = adv76xx_remove,
.id_table = adv76xx_i2c_id,
};

View file

@ -3619,7 +3619,7 @@ static struct i2c_driver adv7842_driver = {
.driver = {
.name = "adv7842",
},
.probe_new = adv7842_probe,
.probe = adv7842_probe,
.remove = adv7842_remove,
.id_table = adv7842_id,
};

View file

@ -306,7 +306,7 @@ static struct i2c_driver ak7375_i2c_driver = {
.pm = &ak7375_pm_ops,
.of_match_table = ak7375_of_table,
},
.probe_new = ak7375_probe,
.probe = ak7375_probe,
.remove = ak7375_remove,
};
module_i2c_driver(ak7375_i2c_driver);

View file

@ -314,7 +314,7 @@ static struct i2c_driver ak881x_i2c_driver = {
.driver = {
.name = "ak881x",
},
.probe_new = ak881x_probe,
.probe = ak881x_probe,
.remove = ak881x_remove,
.id_table = ak881x_id,
};

View file

@ -1198,7 +1198,7 @@ static struct i2c_driver ar0521_i2c_driver = {
.pm = &ar0521_pm_ops,
.of_match_table = ar0521_dt_ids,
},
.probe_new = ar0521_probe,
.probe = ar0521_probe,
.remove = ar0521_remove,
};

View file

@ -468,7 +468,7 @@ static struct i2c_driver bt819_driver = {
.driver = {
.name = "bt819",
},
.probe_new = bt819_probe,
.probe = bt819_probe,
.remove = bt819_remove,
.id_table = bt819_id,
};

View file

@ -239,7 +239,7 @@ static struct i2c_driver bt856_driver = {
.driver = {
.name = "bt856",
},
.probe_new = bt856_probe,
.probe = bt856_probe,
.remove = bt856_remove,
.id_table = bt856_id,
};

View file

@ -206,7 +206,7 @@ static struct i2c_driver bt866_driver = {
.driver = {
.name = "bt866",
},
.probe_new = bt866_probe,
.probe = bt866_probe,
.remove = bt866_remove,
.id_table = bt866_id,
};

View file

@ -3731,7 +3731,7 @@ static struct i2c_driver ccs_i2c_driver = {
.name = CCS_NAME,
.pm = &ccs_pm_ops,
},
.probe_new = ccs_probe,
.probe = ccs_probe,
.remove = ccs_remove,
};

View file

@ -118,7 +118,7 @@ static struct i2c_driver cs3308_driver = {
.driver = {
.name = "cs3308",
},
.probe_new = cs3308_probe,
.probe = cs3308_probe,
.remove = cs3308_remove,
.id_table = cs3308_id,
};

View file

@ -198,7 +198,7 @@ static struct i2c_driver cs5345_driver = {
.driver = {
.name = "cs5345",
},
.probe_new = cs5345_probe,
.probe = cs5345_probe,
.remove = cs5345_remove,
.id_table = cs5345_id,
};

View file

@ -209,7 +209,7 @@ static struct i2c_driver cs53l32a_driver = {
.driver = {
.name = "cs53l32a",
},
.probe_new = cs53l32a_probe,
.probe = cs53l32a_probe,
.remove = cs53l32a_remove,
.id_table = cs53l32a_id,
};

View file

@ -6045,7 +6045,7 @@ static struct i2c_driver cx25840_driver = {
.driver = {
.name = "cx25840",
},
.probe_new = cx25840_probe,
.probe = cx25840_probe,
.remove = cx25840_remove,
.id_table = cx25840_id,
};

View file

@ -299,7 +299,7 @@ static struct i2c_driver dw9714_i2c_driver = {
.pm = &dw9714_pm_ops,
.of_match_table = dw9714_of_table,
},
.probe_new = dw9714_probe,
.probe = dw9714_probe,
.remove = dw9714_remove,
.id_table = dw9714_id_table,
};

View file

@ -549,7 +549,7 @@ static struct i2c_driver dw9768_i2c_driver = {
.pm = &dw9768_pm_ops,
.of_match_table = dw9768_of_table,
},
.probe_new = dw9768_probe,
.probe = dw9768_probe,
.remove = dw9768_remove,
};
module_i2c_driver(dw9768_i2c_driver);

View file

@ -310,7 +310,7 @@ static struct i2c_driver dw9807_i2c_driver = {
.pm = &dw9807_pm_ops,
.of_match_table = dw9807_of_table,
},
.probe_new = dw9807_probe,
.probe = dw9807_probe,
.remove = dw9807_remove,
};

View file

@ -1501,7 +1501,7 @@ static struct i2c_driver et8ek8_i2c_driver = {
.pm = &et8ek8_pm_ops,
.of_match_table = et8ek8_of_table,
},
.probe_new = et8ek8_probe,
.probe = et8ek8_probe,
.remove = __exit_p(et8ek8_remove),
.id_table = et8ek8_id_table,
};

View file

@ -1350,7 +1350,7 @@ static struct i2c_driver hi556_i2c_driver = {
.pm = &hi556_pm_ops,
.acpi_match_table = ACPI_PTR(hi556_acpi_ids),
},
.probe_new = hi556_probe,
.probe = hi556_probe,
.remove = hi556_remove,
.flags = I2C_DRV_ACPI_WAIVE_D0_PROBE,
};

View file

@ -2189,7 +2189,7 @@ static struct i2c_driver hi846_i2c_driver = {
.pm = &hi846_pm_ops,
.of_match_table = hi846_of_match,
},
.probe_new = hi846_probe,
.probe = hi846_probe,
.remove = hi846_remove,
};

View file

@ -2999,7 +2999,7 @@ static struct i2c_driver hi847_i2c_driver = {
.pm = &hi847_pm_ops,
.acpi_match_table = ACPI_PTR(hi847_acpi_ids),
},
.probe_new = hi847_probe,
.probe = hi847_probe,
.remove = hi847_remove,
};

View file

@ -1100,7 +1100,7 @@ static struct i2c_driver imx208_i2c_driver = {
.pm = &imx208_pm_ops,
.acpi_match_table = ACPI_PTR(imx208_acpi_ids),
},
.probe_new = imx208_probe,
.probe = imx208_probe,
.remove = imx208_remove,
.flags = I2C_DRV_ACPI_WAIVE_D0_PROBE,
};

View file

@ -1112,7 +1112,7 @@ static struct i2c_driver imx214_i2c_driver = {
.pm = &imx214_pm_ops,
.name = "imx214",
},
.probe_new = imx214_probe,
.probe = imx214_probe,
.remove = imx214_remove,
};

View file

@ -1583,7 +1583,7 @@ static struct i2c_driver imx219_i2c_driver = {
.of_match_table = imx219_dt_ids,
.pm = &imx219_pm_ops,
},
.probe_new = imx219_probe,
.probe = imx219_probe,
.remove = imx219_remove,
};

View file

@ -1395,7 +1395,7 @@ static struct i2c_driver imx258_i2c_driver = {
.acpi_match_table = ACPI_PTR(imx258_acpi_ids),
.of_match_table = imx258_dt_ids,
},
.probe_new = imx258_probe,
.probe = imx258_probe,
.remove = imx258_remove,
};

View file

@ -2168,7 +2168,7 @@ static struct i2c_driver imx274_i2c_driver = {
.pm = &imx274_pm_ops,
.of_match_table = imx274_of_id_table,
},
.probe_new = imx274_probe,
.probe = imx274_probe,
.remove = imx274_remove,
.id_table = imx274_id,
};

View file

@ -1716,10 +1716,10 @@ static const struct of_device_id imx290_of_match[] = {
MODULE_DEVICE_TABLE(of, imx290_of_match);
static struct i2c_driver imx290_i2c_driver = {
.probe_new = imx290_probe,
.probe = imx290_probe,
.remove = imx290_remove,
.driver = {
.name = "imx290",
.name = "imx290",
.pm = pm_ptr(&imx290_pm_ops),
.of_match_table = imx290_of_match,
},

View file

@ -1152,7 +1152,7 @@ static struct i2c_driver imx296_i2c_driver = {
.name = "imx296",
.pm = &imx296_pm_ops
},
.probe_new = imx296_probe,
.probe = imx296_probe,
.remove = imx296_remove,
};

View file

@ -2558,7 +2558,7 @@ static struct i2c_driver imx319_i2c_driver = {
.pm = &imx319_pm_ops,
.acpi_match_table = ACPI_PTR(imx319_acpi_ids),
},
.probe_new = imx319_probe,
.probe = imx319_probe,
.remove = imx319_remove,
.flags = I2C_DRV_ACPI_WAIVE_D0_PROBE,
};

View file

@ -1382,7 +1382,7 @@ static const struct of_device_id imx334_of_match[] = {
MODULE_DEVICE_TABLE(of, imx334_of_match);
static struct i2c_driver imx334_driver = {
.probe_new = imx334_probe,
.probe = imx334_probe,
.remove = imx334_remove,
.driver = {
.name = "imx334",

View file

@ -1112,7 +1112,7 @@ static const struct of_device_id imx335_of_match[] = {
MODULE_DEVICE_TABLE(of, imx335_of_match);
static struct i2c_driver imx335_driver = {
.probe_new = imx335_probe,
.probe = imx335_probe,
.remove = imx335_remove,
.driver = {
.name = "imx335",

View file

@ -1845,7 +1845,7 @@ static struct i2c_driver imx355_i2c_driver = {
.pm = &imx355_pm_ops,
.acpi_match_table = ACPI_PTR(imx355_acpi_ids),
},
.probe_new = imx355_probe,
.probe = imx355_probe,
.remove = imx355_remove,
};
module_i2c_driver(imx355_i2c_driver);

View file

@ -1293,7 +1293,7 @@ static const struct of_device_id imx412_of_match[] = {
MODULE_DEVICE_TABLE(of, imx412_of_match);
static struct i2c_driver imx412_driver = {
.probe_new = imx412_probe,
.probe = imx412_probe,
.remove = imx412_remove,
.driver = {
.name = "imx412",

View file

@ -1283,7 +1283,7 @@ static const struct of_device_id imx415_of_match[] = {
MODULE_DEVICE_TABLE(of, imx415_of_match);
static struct i2c_driver imx415_driver = {
.probe_new = imx415_probe,
.probe = imx415_probe,
.remove = imx415_remove,
.driver = {
.name = "imx415",

View file

@ -988,7 +988,7 @@ static struct i2c_driver ir_kbd_driver = {
.driver = {
.name = "ir-kbd-i2c",
},
.probe_new = ir_probe,
.probe = ir_probe,
.remove = ir_remove,
.id_table = ir_kbd_id,
};

View file

@ -1614,7 +1614,7 @@ static struct i2c_driver isl7998x_i2c_driver = {
.of_match_table = of_match_ptr(isl7998x_of_match),
.pm = &isl7998x_pm_ops,
},
.probe_new = isl7998x_probe,
.probe = isl7998x_probe,
.remove = isl7998x_remove,
.id_table = isl7998x_id,
};

View file

@ -696,7 +696,7 @@ static struct i2c_driver ks0127_driver = {
.driver = {
.name = "ks0127",
},
.probe_new = ks0127_probe,
.probe = ks0127_probe,
.remove = ks0127_remove,
.id_table = ks0127_id,
};

View file

@ -467,7 +467,7 @@ static struct i2c_driver lm3560_i2c_driver = {
.name = LM3560_NAME,
.pm = NULL,
},
.probe_new = lm3560_probe,
.probe = lm3560_probe,
.remove = lm3560_remove,
.id_table = lm3560_id_table,
};

View file

@ -396,7 +396,7 @@ static struct i2c_driver lm3646_i2c_driver = {
.driver = {
.name = LM3646_NAME,
},
.probe_new = lm3646_probe,
.probe = lm3646_probe,
.remove = lm3646_remove,
.id_table = lm3646_id_table,
};

View file

@ -172,7 +172,7 @@ static struct i2c_driver m52790_driver = {
.driver = {
.name = "m52790",
},
.probe_new = m52790_probe,
.probe = m52790_probe,
.remove = m52790_remove,
.id_table = m52790_id,
};

View file

@ -1429,7 +1429,7 @@ static struct i2c_driver max2175_driver = {
.name = DRIVER_NAME,
.of_match_table = max2175_of_ids,
},
.probe_new = max2175_probe,
.probe = max2175_probe,
.remove = max2175_remove,
.id_table = max2175_id,
};

View file

@ -1716,7 +1716,7 @@ static struct i2c_driver max9286_i2c_driver = {
.name = "max9286",
.of_match_table = of_match_ptr(max9286_dt_ids),
},
.probe_new = max9286_probe,
.probe = max9286_probe,
.remove = max9286_remove,
};

View file

@ -433,7 +433,7 @@ static struct i2c_driver ml86v7667_i2c_driver = {
.driver = {
.name = DRV_NAME,
},
.probe_new = ml86v7667_probe,
.probe = ml86v7667_probe,
.remove = ml86v7667_remove,
.id_table = ml86v7667_id,
};

View file

@ -892,7 +892,7 @@ static struct i2c_driver msp_driver = {
.name = "msp3400",
.pm = &msp3400_pm_ops,
},
.probe_new = msp_probe,
.probe = msp_probe,
.remove = msp_remove,
.id_table = msp_id,
};

View file

@ -877,7 +877,7 @@ static struct i2c_driver mt9m001_i2c_driver = {
.pm = &mt9m001_pm_ops,
.of_match_table = mt9m001_of_match,
},
.probe_new = mt9m001_probe,
.probe = mt9m001_probe,
.remove = mt9m001_remove,
.id_table = mt9m001_id,
};

View file

@ -1384,7 +1384,7 @@ static struct i2c_driver mt9m111_i2c_driver = {
.name = "mt9m111",
.of_match_table = of_match_ptr(mt9m111_of_match),
},
.probe_new = mt9m111_probe,
.probe = mt9m111_probe,
.remove = mt9m111_remove,
.id_table = mt9m111_id,
};

View file

@ -1248,7 +1248,7 @@ static struct i2c_driver mt9p031_i2c_driver = {
.of_match_table = of_match_ptr(mt9p031_of_match),
.name = "mt9p031",
},
.probe_new = mt9p031_probe,
.probe = mt9p031_probe,
.remove = mt9p031_remove,
.id_table = mt9p031_id,
};

View file

@ -1119,7 +1119,7 @@ static struct i2c_driver mt9t112_i2c_driver = {
.driver = {
.name = "mt9t112",
},
.probe_new = mt9t112_probe,
.probe = mt9t112_probe,
.remove = mt9t112_remove,
.id_table = mt9t112_id,
};

View file

@ -585,7 +585,7 @@ static struct i2c_driver mt9v011_driver = {
.driver = {
.name = "mt9v011",
},
.probe_new = mt9v011_probe,
.probe = mt9v011_probe,
.remove = mt9v011_remove,
.id_table = mt9v011_id,
};

View file

@ -1296,7 +1296,7 @@ static struct i2c_driver mt9v032_driver = {
.name = "mt9v032",
.of_match_table = of_match_ptr(mt9v032_of_match),
},
.probe_new = mt9v032_probe,
.probe = mt9v032_probe,
.remove = mt9v032_remove,
.id_table = mt9v032_id,
};

View file

@ -1265,7 +1265,7 @@ static struct i2c_driver mt9v111_driver = {
.name = "mt9v111",
.of_match_table = mt9v111_of_match,
},
.probe_new = mt9v111_probe,
.probe = mt9v111_probe,
.remove = mt9v111_remove,
};

View file

@ -1115,7 +1115,7 @@ static struct i2c_driver og01a1b_i2c_driver = {
.pm = &og01a1b_pm_ops,
.acpi_match_table = ACPI_PTR(og01a1b_acpi_ids),
},
.probe_new = og01a1b_probe,
.probe = og01a1b_probe,
.remove = og01a1b_remove,
};

View file

@ -1002,8 +1002,8 @@ static struct i2c_driver ov02a10_i2c_driver = {
.pm = &ov02a10_pm_ops,
.of_match_table = ov02a10_of_match,
},
.probe_new = &ov02a10_probe,
.remove = &ov02a10_remove,
.probe = ov02a10_probe,
.remove = ov02a10_remove,
};
module_i2c_driver(ov02a10_i2c_driver);

View file

@ -1520,7 +1520,7 @@ static struct i2c_driver ov08d10_i2c_driver = {
.pm = &ov08d10_pm_ops,
.acpi_match_table = ACPI_PTR(ov08d10_acpi_ids),
},
.probe_new = ov08d10_probe,
.probe = ov08d10_probe,
.remove = ov08d10_remove,
};

View file

@ -3313,7 +3313,7 @@ static struct i2c_driver ov08x40_i2c_driver = {
.pm = &ov08x40_pm_ops,
.acpi_match_table = ACPI_PTR(ov08x40_acpi_ids),
},
.probe_new = ov08x40_probe,
.probe = ov08x40_probe,
.remove = ov08x40_remove,
};

View file

@ -1806,7 +1806,7 @@ static struct i2c_driver ov13858_i2c_driver = {
.pm = &ov13858_pm_ops,
.acpi_match_table = ACPI_PTR(ov13858_acpi_ids),
},
.probe_new = ov13858_probe,
.probe = ov13858_probe,
.remove = ov13858_remove,
.id_table = ov13858_id_table,
};

View file

@ -1496,7 +1496,7 @@ static struct i2c_driver ov13b10_i2c_driver = {
.pm = &ov13b10_pm_ops,
.acpi_match_table = ACPI_PTR(ov13b10_acpi_ids),
},
.probe_new = ov13b10_probe,
.probe = ov13b10_probe,
.remove = ov13b10_remove,
.flags = I2C_DRV_ACPI_WAIVE_D0_PROBE,
};

View file

@ -1298,7 +1298,7 @@ static struct i2c_driver ov2640_i2c_driver = {
.name = "ov2640",
.of_match_table = of_match_ptr(ov2640_of_match),
},
.probe_new = ov2640_probe,
.probe = ov2640_probe,
.remove = ov2640_remove,
.id_table = ov2640_id,
};

View file

@ -1584,7 +1584,7 @@ static struct i2c_driver ov2659_i2c_driver = {
.pm = &ov2659_pm_ops,
.of_match_table = of_match_ptr(ov2659_of_match),
},
.probe_new = ov2659_probe,
.probe = ov2659_probe,
.remove = ov2659_remove,
.id_table = ov2659_id,
};

View file

@ -1158,7 +1158,7 @@ static struct i2c_driver ov2680_i2c_driver = {
.pm = &ov2680_pm_ops,
.of_match_table = of_match_ptr(ov2680_dt_ids),
},
.probe_new = ov2680_probe,
.probe = ov2680_probe,
.remove = ov2680_remove,
};
module_i2c_driver(ov2680_i2c_driver);

View file

@ -903,8 +903,8 @@ static struct i2c_driver ov2685_i2c_driver = {
.pm = &ov2685_pm_ops,
.of_match_table = of_match_ptr(ov2685_of_match),
},
.probe_new = &ov2685_probe,
.remove = &ov2685_remove,
.probe = ov2685_probe,
.remove = ov2685_remove,
};
module_i2c_driver(ov2685_i2c_driver);

View file

@ -1215,7 +1215,7 @@ static struct i2c_driver ov2740_i2c_driver = {
.pm = pm_sleep_ptr(&ov2740_pm_ops),
.acpi_match_table = ov2740_acpi_ids,
},
.probe_new = ov2740_probe,
.probe = ov2740_probe,
.remove = ov2740_remove,
.flags = I2C_DRV_ACPI_WAIVE_D0_PROBE,
};

View file

@ -1008,7 +1008,7 @@ static struct i2c_driver ov4689_i2c_driver = {
.pm = &ov4689_pm_ops,
.of_match_table = ov4689_of_match,
},
.probe_new = ov4689_probe,
.probe = ov4689_probe,
.remove = ov4689_remove,
};

View file

@ -4011,7 +4011,7 @@ static struct i2c_driver ov5640_i2c_driver = {
.pm = &ov5640_pm_ops,
},
.id_table = ov5640_id,
.probe_new = ov5640_probe,
.probe = ov5640_probe,
.remove = ov5640_remove,
};

View file

@ -1286,7 +1286,7 @@ static struct i2c_driver ov5645_i2c_driver = {
.name = "ov5645",
.pm = &ov5645_pm_ops,
},
.probe_new = ov5645_probe,
.probe = ov5645_probe,
.remove = ov5645_remove,
.id_table = ov5645_id,
};

Some files were not shown because too many files have changed in this diff Show more