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 533/606] power: supply: sbs-manager: 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/power/supply/sbs-manager.c | 6 +++---
    1 file changed, 3 insertions(+), 3 deletions(-)

    diff --git a/drivers/power/supply/sbs-manager.c b/drivers/power/supply/sbs-manager.c
    index 71ec8f74f835..bde977391fd4 100644
    --- a/drivers/power/supply/sbs-manager.c
    +++ b/drivers/power/supply/sbs-manager.c
    @@ -315,9 +315,9 @@ static void sbsm_del_mux_adapter(void *data)
    i2c_mux_del_adapters(sbsm->muxc);
    }

    -static int sbsm_probe(struct i2c_client *client,
    - const struct i2c_device_id *id)
    +static int sbsm_probe(struct i2c_client *client)
    {
    + const struct i2c_device_id *id = i2c_client_get_device_id(client);
    struct i2c_adapter *adapter = client->adapter;
    struct sbsm_data *data;
    struct device *dev = &client->dev;
    @@ -409,7 +409,7 @@ static struct i2c_driver sbsm_driver = {
    .name = "sbsm",
    .of_match_table = of_match_ptr(sbsm_dt_ids),
    },
    - .probe = sbsm_probe,
    + .probe_new = sbsm_probe,
    .alert = sbsm_alert,
    .id_table = sbsm_ids
    };
    --
    2.38.1
    \
     
     \ /
      Last update: 2022-11-19 00:56    [W:2.350 / U:0.328 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site