Skip to content

Commit

Permalink
crypto: atmel-sha204a - Convert to i2c's .probe_new()
Browse files Browse the repository at this point in the history
.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 <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
Uwe Kleine-König authored and herbertx committed Nov 25, 2022
1 parent b8ed0bf commit fa2ca3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/crypto/atmel-sha204a.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ static int atmel_sha204a_rng_read(struct hwrng *rng, void *data, size_t max,
return max;
}

static int atmel_sha204a_probe(struct i2c_client *client,
const struct i2c_device_id *id)
static int atmel_sha204a_probe(struct i2c_client *client)
{
const struct i2c_device_id *id = i2c_client_get_device_id(client);
struct atmel_i2c_client_priv *i2c_priv;
int ret;

Expand Down Expand Up @@ -142,7 +142,7 @@ static const struct i2c_device_id atmel_sha204a_id[] = {
MODULE_DEVICE_TABLE(i2c, atmel_sha204a_id);

static struct i2c_driver atmel_sha204a_driver = {
.probe = atmel_sha204a_probe,
.probe_new = atmel_sha204a_probe,
.remove = atmel_sha204a_remove,
.id_table = atmel_sha204a_id,

Expand Down

0 comments on commit fa2ca3b

Please sign in to comment.