mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-28 07:54:36 -05:00
drm/panel: olimex-lcd-olinuxino: 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: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com> Signed-off-by: Javier Martinez Canillas <javierm@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20221118224540.619276-43-uwe@kleine-koenig.org
This commit is contained in:
committed by
Javier Martinez Canillas
parent
3072599526
commit
446757576a
@@ -202,8 +202,7 @@ static const struct drm_panel_funcs lcd_olinuxino_funcs = {
|
||||
.get_modes = lcd_olinuxino_get_modes,
|
||||
};
|
||||
|
||||
static int lcd_olinuxino_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
static int lcd_olinuxino_probe(struct i2c_client *client)
|
||||
{
|
||||
struct device *dev = &client->dev;
|
||||
struct lcd_olinuxino *lcd;
|
||||
@@ -309,7 +308,7 @@ static struct i2c_driver lcd_olinuxino_driver = {
|
||||
.name = "lcd_olinuxino",
|
||||
.of_match_table = lcd_olinuxino_of_ids,
|
||||
},
|
||||
.probe = lcd_olinuxino_probe,
|
||||
.probe_new = lcd_olinuxino_probe,
|
||||
.remove = lcd_olinuxino_remove,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user