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 489/606] misc: eeprom/max6875: Convert to i2c's .probe_new()
    Date
    From: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

    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 <u.kleine-koenig@pengutronix.de>
    ---
    drivers/misc/eeprom/max6875.c | 5 ++---
    1 file changed, 2 insertions(+), 3 deletions(-)

    diff --git a/drivers/misc/eeprom/max6875.c b/drivers/misc/eeprom/max6875.c
    index 6bd4f4339af4..79cf8afcef2e 100644
    --- a/drivers/misc/eeprom/max6875.c
    +++ b/drivers/misc/eeprom/max6875.c
    @@ -130,8 +130,7 @@ static const struct bin_attribute user_eeprom_attr = {
    .read = max6875_read,
    };

    -static int max6875_probe(struct i2c_client *client,
    - const struct i2c_device_id *id)
    +static int max6875_probe(struct i2c_client *client)
    {
    struct i2c_adapter *adapter = client->adapter;
    struct max6875_data *data;
    @@ -193,7 +192,7 @@ static struct i2c_driver max6875_driver = {
    .driver = {
    .name = "max6875",
    },
    - .probe = max6875_probe,
    + .probe_new = max6875_probe,
    .remove = max6875_remove,
    .id_table = max6875_id,
    };
    --
    2.38.1
    \
     
     \ /
      Last update: 2022-11-19 01:15    [W:2.497 / U:0.400 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site