lkml.org 
[lkml]   [2022]   [Nov]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 275/606] leds: lm3692x: Convert to i2c's .probe_new()
    Date
    From: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

    .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>
    ---
    drivers/leds/leds-lm3692x.c | 6 +++---
    1 file changed, 3 insertions(+), 3 deletions(-)

    diff --git a/drivers/leds/leds-lm3692x.c b/drivers/leds/leds-lm3692x.c
    index 54b4662bff41..66126d0666f5 100644
    --- a/drivers/leds/leds-lm3692x.c
    +++ b/drivers/leds/leds-lm3692x.c
    @@ -456,9 +456,9 @@ static int lm3692x_probe_dt(struct lm3692x_led *led)
    return ret;
    }

    -static int lm3692x_probe(struct i2c_client *client,
    - const struct i2c_device_id *id)
    +static int lm3692x_probe(struct i2c_client *client)
    {
    + const struct i2c_device_id *id = i2c_client_get_device_id(client);
    struct lm3692x_led *led;
    int ret;

    @@ -518,7 +518,7 @@ static struct i2c_driver lm3692x_driver = {
    .name = "lm3692x",
    .of_match_table = of_lm3692x_leds_match,
    },
    - .probe = lm3692x_probe,
    + .probe_new = lm3692x_probe,
    .remove = lm3692x_remove,
    .id_table = lm3692x_id,
    };
    --
    2.38.1
    \
     
     \ /
      Last update: 2022-11-19 01:11    [W:3.754 / U:0.156 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site