Commit 0f654880 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Robert Foss

drm/bridge: ti-sn65dsi83: Convert to i2c's .probe_new()

.probe_new() doesn't get the i2c_device_id * parameter, so determine
that explicitly in the probe function.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Link: https://lore.kernel.org/r/20221118224540.619276-36-uwe@kleine-koenig.orgSigned-off-by: default avatarRobert Foss <robert.foss@linaro.org>
parent d6b522e9
...@@ -653,9 +653,9 @@ static int sn65dsi83_host_attach(struct sn65dsi83 *ctx) ...@@ -653,9 +653,9 @@ static int sn65dsi83_host_attach(struct sn65dsi83 *ctx)
return 0; return 0;
} }
static int sn65dsi83_probe(struct i2c_client *client, static int sn65dsi83_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
const struct i2c_device_id *id = i2c_client_get_device_id(client);
struct device *dev = &client->dev; struct device *dev = &client->dev;
enum sn65dsi83_model model; enum sn65dsi83_model model;
struct sn65dsi83 *ctx; struct sn65dsi83 *ctx;
...@@ -730,7 +730,7 @@ static const struct of_device_id sn65dsi83_match_table[] = { ...@@ -730,7 +730,7 @@ static const struct of_device_id sn65dsi83_match_table[] = {
MODULE_DEVICE_TABLE(of, sn65dsi83_match_table); MODULE_DEVICE_TABLE(of, sn65dsi83_match_table);
static struct i2c_driver sn65dsi83_driver = { static struct i2c_driver sn65dsi83_driver = {
.probe = sn65dsi83_probe, .probe_new = sn65dsi83_probe,
.remove = sn65dsi83_remove, .remove = sn65dsi83_remove,
.id_table = sn65dsi83_id, .id_table = sn65dsi83_id,
.driver = { .driver = {
......
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