drm/bridge: parade-ps8622: Convert to i2c's .probe_new()
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:36:02 +0000 (23:36 +0100)
committerRobert Foss <robert.foss@linaro.org>
Mon, 12 Dec 2022 16:17:46 +0000 (17:17 +0100)
.probe_new() doesn't get the i2c_device_id * parameter, so determine
that explicitly in the probe function.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Link: https://lore.kernel.org/r/20221118224540.619276-29-uwe@kleine-koenig.org
Signed-off-by: Robert Foss <robert.foss@linaro.org>
drivers/gpu/drm/bridge/parade-ps8622.c

index 309de80..530ee6a 100644 (file)
@@ -442,9 +442,9 @@ static const struct of_device_id ps8622_devices[] = {
 };
 MODULE_DEVICE_TABLE(of, ps8622_devices);
 
-static int ps8622_probe(struct i2c_client *client,
-                                       const struct i2c_device_id *id)
+static int ps8622_probe(struct i2c_client *client)
 {
+       const struct i2c_device_id *id = i2c_client_get_device_id(client);
        struct device *dev = &client->dev;
        struct ps8622_bridge *ps8622;
        struct drm_bridge *panel_bridge;
@@ -538,7 +538,7 @@ MODULE_DEVICE_TABLE(i2c, ps8622_i2c_table);
 
 static struct i2c_driver ps8622_driver = {
        .id_table       = ps8622_i2c_table,
-       .probe          = ps8622_probe,
+       .probe_new      = ps8622_probe,
        .remove         = ps8622_remove,
        .driver         = {
                .name   = "ps8622",