2022-11-18 23:18:13

by Uwe Kleine-König

[permalink] [raw]
Subject: [PATCH 017/606] drm/bridge: anx7625: Convert to i2c's .probe_new()

From: Uwe Kleine-König <[email protected]>

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 <[email protected]>
---
drivers/gpu/drm/bridge/analogix/anx7625.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/bridge/analogix/anx7625.c b/drivers/gpu/drm/bridge/analogix/anx7625.c
index b0ff1ecb80a5..86a52c5f4fbc 100644
--- a/drivers/gpu/drm/bridge/analogix/anx7625.c
+++ b/drivers/gpu/drm/bridge/analogix/anx7625.c
@@ -2562,8 +2562,7 @@ static void anx7625_runtime_disable(void *data)
pm_runtime_disable(data);
}

-static int anx7625_i2c_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int anx7625_i2c_probe(struct i2c_client *client)
{
struct anx7625_data *platform;
struct anx7625_platform_data *pdata;
@@ -2756,7 +2755,7 @@ static struct i2c_driver anx7625_driver = {
.of_match_table = anx_match_table,
.pm = &anx7625_pm_ops,
},
- .probe = anx7625_i2c_probe,
+ .probe_new = anx7625_i2c_probe,
.remove = anx7625_i2c_remove,

.id_table = anx7625_id,
--
2.38.1



2022-11-19 18:19:56

by Laurent Pinchart

[permalink] [raw]
Subject: Re: [PATCH 017/606] drm/bridge: anx7625: Convert to i2c's .probe_new()

On Fri, Nov 18, 2022 at 11:35:51PM +0100, Uwe Kleine-König wrote:
> From: Uwe Kleine-König <[email protected]>
>
> 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 <[email protected]>

Reviewed-by: Laurent Pinchart <[email protected]>

> ---
> drivers/gpu/drm/bridge/analogix/anx7625.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/bridge/analogix/anx7625.c b/drivers/gpu/drm/bridge/analogix/anx7625.c
> index b0ff1ecb80a5..86a52c5f4fbc 100644
> --- a/drivers/gpu/drm/bridge/analogix/anx7625.c
> +++ b/drivers/gpu/drm/bridge/analogix/anx7625.c
> @@ -2562,8 +2562,7 @@ static void anx7625_runtime_disable(void *data)
> pm_runtime_disable(data);
> }
>
> -static int anx7625_i2c_probe(struct i2c_client *client,
> - const struct i2c_device_id *id)
> +static int anx7625_i2c_probe(struct i2c_client *client)
> {
> struct anx7625_data *platform;
> struct anx7625_platform_data *pdata;
> @@ -2756,7 +2755,7 @@ static struct i2c_driver anx7625_driver = {
> .of_match_table = anx_match_table,
> .pm = &anx7625_pm_ops,
> },
> - .probe = anx7625_i2c_probe,
> + .probe_new = anx7625_i2c_probe,
> .remove = anx7625_i2c_remove,
>
> .id_table = anx7625_id,
> --
> 2.38.1
>

--
Regards,

Laurent Pinchart