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

    diff --git a/drivers/media/i2c/adv7604.c b/drivers/media/i2c/adv7604.c
    index bda0c547ce44..9d218962d7c8 100644
    --- a/drivers/media/i2c/adv7604.c
    +++ b/drivers/media/i2c/adv7604.c
    @@ -3401,9 +3401,9 @@ static void adv76xx_reset(struct adv76xx_state *state)
    }
    }

    -static int adv76xx_probe(struct i2c_client *client,
    - const struct i2c_device_id *id)
    +static int adv76xx_probe(struct i2c_client *client)
    {
    + const struct i2c_device_id *id = i2c_client_get_device_id(client);
    static const struct v4l2_dv_timings cea640x480 =
    V4L2_DV_BT_CEA_640X480P59_94;
    struct adv76xx_state *state;
    @@ -3686,7 +3686,7 @@ static struct i2c_driver adv76xx_driver = {
    .name = "adv7604",
    .of_match_table = of_match_ptr(adv76xx_of_id),
    },
    - .probe = adv76xx_probe,
    + .probe_new = adv76xx_probe,
    .remove = adv76xx_remove,
    .id_table = adv76xx_i2c_id,
    };
    --
    2.38.1
    \
     
     \ /
      Last update: 2022-11-19 00:39    [W:4.049 / U:0.092 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site