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 542/606] regulator: isl6271a-regulator: 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/regulator/isl6271a-regulator.c | 6 +++---
    1 file changed, 3 insertions(+), 3 deletions(-)

    diff --git a/drivers/regulator/isl6271a-regulator.c b/drivers/regulator/isl6271a-regulator.c
    index 591a64e1ca61..b23b052eab10 100644
    --- a/drivers/regulator/isl6271a-regulator.c
    +++ b/drivers/regulator/isl6271a-regulator.c
    @@ -97,9 +97,9 @@ static const struct regulator_desc isl_rd[] = {
    },
    };

    -static int isl6271a_probe(struct i2c_client *i2c,
    - const struct i2c_device_id *id)
    +static int isl6271a_probe(struct i2c_client *i2c)
    {
    + const struct i2c_device_id *id = i2c_client_get_device_id(i2c);
    struct regulator_dev *rdev;
    struct regulator_config config = { };
    struct regulator_init_data *init_data = dev_get_platdata(&i2c->dev);
    @@ -148,7 +148,7 @@ static struct i2c_driver isl6271a_i2c_driver = {
    .driver = {
    .name = "isl6271a",
    },
    - .probe = isl6271a_probe,
    + .probe_new = isl6271a_probe,
    .id_table = isl6271a_id,
    };

    --
    2.38.1
    \
     
     \ /
      Last update: 2022-11-19 01:01    [W:5.290 / U:0.256 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site