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 044/606] i2c: core: 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/i2c/i2c-core-base.c | 5 ++---
    1 file changed, 2 insertions(+), 3 deletions(-)

    diff --git a/drivers/i2c/i2c-core-base.c b/drivers/i2c/i2c-core-base.c
    index 13fafb74bab8..087e480b624c 100644
    --- a/drivers/i2c/i2c-core-base.c
    +++ b/drivers/i2c/i2c-core-base.c
    @@ -1018,15 +1018,14 @@ static const struct i2c_device_id dummy_id[] = {
    { },
    };

    -static int dummy_probe(struct i2c_client *client,
    - const struct i2c_device_id *id)
    +static int dummy_probe(struct i2c_client *client)
    {
    return 0;
    }

    static struct i2c_driver dummy_driver = {
    .driver.name = "dummy",
    - .probe = dummy_probe,
    + .probe_new = dummy_probe,
    .id_table = dummy_id,
    };

    --
    2.38.1
    \
     
     \ /
      Last update: 2022-11-18 23:47    [W:2.948 / U:0.012 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site