mirror of
https://github.com/linux-msm/laptops-kernel.git
synced 2026-08-13 14:19:53 -07:00
leds: Switch i2c drivers back to use .probe()
After commitb8a1a4cd5a("i2c: Provide a temporary .probe_new() call-back type"), all drivers being converted to .probe_new() and then03c835f498("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> Link: https://lore.kernel.org/r/20230517180559.166329-1-u.kleine-koenig@pengutronix.de Signed-off-by: Lee Jones <lee@kernel.org>
This commit is contained in:
committed by
Lee Jones
parent
b0f379bd6e
commit
d9ff8a8eec
@@ -759,7 +759,7 @@ static struct i2c_driver as3645a_i2c_driver = {
|
||||
.of_match_table = as3645a_of_table,
|
||||
.name = AS_NAME,
|
||||
},
|
||||
.probe_new = as3645a_probe,
|
||||
.probe = as3645a_probe,
|
||||
.remove = as3645a_remove,
|
||||
.id_table = as3645a_id_table,
|
||||
};
|
||||
|
||||
@@ -471,7 +471,7 @@ static struct i2c_driver lm3601x_i2c_driver = {
|
||||
.name = "lm3601x",
|
||||
.of_match_table = of_lm3601x_leds_match,
|
||||
},
|
||||
.probe_new = lm3601x_probe,
|
||||
.probe = lm3601x_probe,
|
||||
.remove = lm3601x_remove,
|
||||
.id_table = lm3601x_id,
|
||||
};
|
||||
|
||||
@@ -419,7 +419,7 @@ static struct i2c_driver rt4505_driver = {
|
||||
.name = "rt4505",
|
||||
.of_match_table = of_match_ptr(rt4505_leds_match),
|
||||
},
|
||||
.probe_new = rt4505_probe,
|
||||
.probe = rt4505_probe,
|
||||
.remove = rt4505_remove,
|
||||
.shutdown = rt4505_shutdown,
|
||||
};
|
||||
|
||||
@@ -346,7 +346,7 @@ static struct i2c_driver an30259a_driver = {
|
||||
.name = "leds-an30259a",
|
||||
.of_match_table = of_match_ptr(an30259a_match_table),
|
||||
},
|
||||
.probe_new = an30259a_probe,
|
||||
.probe = an30259a_probe,
|
||||
.remove = an30259a_remove,
|
||||
.id_table = an30259a_id,
|
||||
};
|
||||
|
||||
@@ -422,7 +422,7 @@ static struct i2c_driver aw2013_driver = {
|
||||
.name = "leds-aw2013",
|
||||
.of_match_table = of_match_ptr(aw2013_match_table),
|
||||
},
|
||||
.probe_new = aw2013_probe,
|
||||
.probe = aw2013_probe,
|
||||
.remove = aw2013_remove,
|
||||
};
|
||||
|
||||
|
||||
@@ -150,7 +150,7 @@ static struct i2c_driver bd2606mvv_driver = {
|
||||
.name = "leds-bd2606mvv",
|
||||
.of_match_table = of_match_ptr(of_bd2606mvv_leds_match),
|
||||
},
|
||||
.probe_new = bd2606mvv_probe,
|
||||
.probe = bd2606mvv_probe,
|
||||
};
|
||||
|
||||
module_i2c_driver(bd2606mvv_driver);
|
||||
|
||||
@@ -786,7 +786,7 @@ static struct i2c_driver bd2802_i2c_driver = {
|
||||
.name = "BD2802",
|
||||
.pm = &bd2802_pm,
|
||||
},
|
||||
.probe_new = bd2802_probe,
|
||||
.probe = bd2802_probe,
|
||||
.remove = bd2802_remove,
|
||||
.id_table = bd2802_id,
|
||||
};
|
||||
|
||||
@@ -730,7 +730,7 @@ static struct i2c_driver blinkm_driver = {
|
||||
.driver = {
|
||||
.name = "blinkm",
|
||||
},
|
||||
.probe_new = blinkm_probe,
|
||||
.probe = blinkm_probe,
|
||||
.remove = blinkm_remove,
|
||||
.id_table = blinkm_id,
|
||||
.detect = blinkm_detect,
|
||||
|
||||
@@ -602,7 +602,7 @@ static struct i2c_driver is31fl319x_driver = {
|
||||
.name = "leds-is31fl319x",
|
||||
.of_match_table = of_is31fl319x_match,
|
||||
},
|
||||
.probe_new = is31fl319x_probe,
|
||||
.probe = is31fl319x_probe,
|
||||
.id_table = is31fl319x_id,
|
||||
};
|
||||
|
||||
|
||||
@@ -488,7 +488,7 @@ static struct i2c_driver is31fl32xx_driver = {
|
||||
.name = "is31fl32xx",
|
||||
.of_match_table = of_is31fl32xx_match,
|
||||
},
|
||||
.probe_new = is31fl32xx_probe,
|
||||
.probe = is31fl32xx_probe,
|
||||
.remove = is31fl32xx_remove,
|
||||
.id_table = is31fl32xx_id,
|
||||
};
|
||||
|
||||
@@ -484,7 +484,7 @@ static const struct i2c_device_id lm3530_id[] = {
|
||||
MODULE_DEVICE_TABLE(i2c, lm3530_id);
|
||||
|
||||
static struct i2c_driver lm3530_i2c_driver = {
|
||||
.probe_new = lm3530_probe,
|
||||
.probe = lm3530_probe,
|
||||
.remove = lm3530_remove,
|
||||
.id_table = lm3530_id,
|
||||
.driver = {
|
||||
|
||||
@@ -726,7 +726,7 @@ static const struct i2c_device_id lm3532_id[] = {
|
||||
MODULE_DEVICE_TABLE(i2c, lm3532_id);
|
||||
|
||||
static struct i2c_driver lm3532_i2c_driver = {
|
||||
.probe_new = lm3532_probe,
|
||||
.probe = lm3532_probe,
|
||||
.remove = lm3532_remove,
|
||||
.id_table = lm3532_id,
|
||||
.driver = {
|
||||
|
||||
@@ -516,7 +516,7 @@ static struct i2c_driver lm355x_i2c_driver = {
|
||||
.name = LM355x_NAME,
|
||||
.pm = NULL,
|
||||
},
|
||||
.probe_new = lm355x_probe,
|
||||
.probe = lm355x_probe,
|
||||
.remove = lm355x_remove,
|
||||
.id_table = lm355x_id,
|
||||
};
|
||||
|
||||
@@ -401,7 +401,7 @@ static struct i2c_driver lm3642_i2c_driver = {
|
||||
.name = LM3642_NAME,
|
||||
.pm = NULL,
|
||||
},
|
||||
.probe_new = lm3642_probe,
|
||||
.probe = lm3642_probe,
|
||||
.remove = lm3642_remove,
|
||||
.id_table = lm3642_id,
|
||||
};
|
||||
|
||||
@@ -518,7 +518,7 @@ static struct i2c_driver lm3692x_driver = {
|
||||
.name = "lm3692x",
|
||||
.of_match_table = of_lm3692x_leds_match,
|
||||
},
|
||||
.probe_new = lm3692x_probe,
|
||||
.probe = lm3692x_probe,
|
||||
.remove = lm3692x_remove,
|
||||
.id_table = lm3692x_id,
|
||||
};
|
||||
|
||||
@@ -376,7 +376,7 @@ static struct i2c_driver lm3697_driver = {
|
||||
.name = "lm3697",
|
||||
.of_match_table = of_lm3697_leds_match,
|
||||
},
|
||||
.probe_new = lm3697_probe,
|
||||
.probe = lm3697_probe,
|
||||
.remove = lm3697_remove,
|
||||
.id_table = lm3697_id,
|
||||
};
|
||||
|
||||
@@ -427,7 +427,7 @@ static struct i2c_driver lp3944_driver = {
|
||||
.driver = {
|
||||
.name = "lp3944",
|
||||
},
|
||||
.probe_new = lp3944_probe,
|
||||
.probe = lp3944_probe,
|
||||
.remove = lp3944_remove,
|
||||
.id_table = lp3944_id,
|
||||
};
|
||||
|
||||
@@ -273,7 +273,7 @@ static struct i2c_driver lp3952_i2c_driver = {
|
||||
.driver = {
|
||||
.name = LP3952_NAME,
|
||||
},
|
||||
.probe_new = lp3952_probe,
|
||||
.probe = lp3952_probe,
|
||||
.remove = lp3952_remove,
|
||||
.id_table = lp3952_id,
|
||||
};
|
||||
|
||||
@@ -608,7 +608,7 @@ static struct i2c_driver lp50xx_driver = {
|
||||
.name = "lp50xx",
|
||||
.of_match_table = of_lp50xx_leds_match,
|
||||
},
|
||||
.probe_new = lp50xx_probe,
|
||||
.probe = lp50xx_probe,
|
||||
.remove = lp50xx_remove,
|
||||
.id_table = lp50xx_id,
|
||||
};
|
||||
|
||||
@@ -607,7 +607,7 @@ static struct i2c_driver lp5521_driver = {
|
||||
.name = "lp5521",
|
||||
.of_match_table = of_match_ptr(of_lp5521_leds_match),
|
||||
},
|
||||
.probe_new = lp5521_probe,
|
||||
.probe = lp5521_probe,
|
||||
.remove = lp5521_remove,
|
||||
.id_table = lp5521_id,
|
||||
};
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user