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

    diff --git a/drivers/media/i2c/tvp514x.c b/drivers/media/i2c/tvp514x.c
    index a746d96875f9..a2b58e3250a7 100644
    --- a/drivers/media/i2c/tvp514x.c
    +++ b/drivers/media/i2c/tvp514x.c
    @@ -1023,8 +1023,9 @@ tvp514x_get_pdata(struct i2c_client *client)
    * device.
    */
    static int
    -tvp514x_probe(struct i2c_client *client, const struct i2c_device_id *id)
    +tvp514x_probe(struct i2c_client *client)
    {
    + const struct i2c_device_id *id = i2c_client_get_device_id(client);
    struct tvp514x_platform_data *pdata = tvp514x_get_pdata(client);
    struct tvp514x_decoder *decoder;
    struct v4l2_subdev *sd;
    @@ -1208,7 +1209,7 @@ static struct i2c_driver tvp514x_driver = {
    .of_match_table = of_match_ptr(tvp514x_of_match),
    .name = TVP514X_MODULE_NAME,
    },
    - .probe = tvp514x_probe,
    + .probe_new = tvp514x_probe,
    .remove = tvp514x_remove,
    .id_table = tvp514x_id,
    };
    --
    2.38.1
    \
     
     \ /
      Last update: 2022-11-19 00:51    [W:2.073 / U:0.880 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site