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

    diff --git a/drivers/power/supply/bq24257_charger.c b/drivers/power/supply/bq24257_charger.c
    index a309bbedfe52..ab4c49788c58 100644
    --- a/drivers/power/supply/bq24257_charger.c
    +++ b/drivers/power/supply/bq24257_charger.c
    @@ -947,9 +947,9 @@ static int bq24257_fw_probe(struct bq24257_device *bq)
    return 0;
    }

    -static int bq24257_probe(struct i2c_client *client,
    - const struct i2c_device_id *id)
    +static int bq24257_probe(struct i2c_client *client)
    {
    + const struct i2c_device_id *id = i2c_client_get_device_id(client);
    struct i2c_adapter *adapter = client->adapter;
    struct device *dev = &client->dev;
    const struct acpi_device_id *acpi_id;
    @@ -1167,7 +1167,7 @@ static struct i2c_driver bq24257_driver = {
    .acpi_match_table = ACPI_PTR(bq24257_acpi_match),
    .pm = &bq24257_pm,
    },
    - .probe = bq24257_probe,
    + .probe_new = bq24257_probe,
    .remove = bq24257_remove,
    .id_table = bq24257_i2c_ids,
    };
    --
    2.38.1
    \
     
     \ /
      Last update: 2022-11-19 01:16    [W:4.092 / U:0.064 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site