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 407/606] media: tuners/si2157: 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/media/tuners/si2157.c | 6 +++---
    1 file changed, 3 insertions(+), 3 deletions(-)

    diff --git a/drivers/media/tuners/si2157.c b/drivers/media/tuners/si2157.c
    index 476b32c04c20..3fa3dcda917a 100644
    --- a/drivers/media/tuners/si2157.c
    +++ b/drivers/media/tuners/si2157.c
    @@ -875,9 +875,9 @@ static void si2157_stat_work(struct work_struct *work)
    dev_dbg(&client->dev, "failed=%d\n", ret);
    }

    -static int si2157_probe(struct i2c_client *client,
    - const struct i2c_device_id *id)
    +static int si2157_probe(struct i2c_client *client)
    {
    + const struct i2c_device_id *id = i2c_client_get_device_id(client);
    struct si2157_config *cfg = client->dev.platform_data;
    struct dvb_frontend *fe = cfg->fe;
    struct si2157_dev *dev;
    @@ -990,7 +990,7 @@ static struct i2c_driver si2157_driver = {
    .name = "si2157",
    .suppress_bind_attrs = true,
    },
    - .probe = si2157_probe,
    + .probe_new = si2157_probe,
    .remove = si2157_remove,
    .id_table = si2157_id_table,
    };
    --
    2.38.1
    \
     
     \ /
      Last update: 2022-11-19 01:26    [W:2.592 / U:0.256 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site