Commit fa2ca3b2 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Herbert Xu

crypto: atmel-sha204a - Convert to i2c's .probe_new()

.probe_new() doesn't get the i2c_device_id * parameter, so determine
that explicitly in the probe function.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent b8ed0bff
...@@ -91,9 +91,9 @@ static int atmel_sha204a_rng_read(struct hwrng *rng, void *data, size_t max, ...@@ -91,9 +91,9 @@ static int atmel_sha204a_rng_read(struct hwrng *rng, void *data, size_t max,
return max; return max;
} }
static int atmel_sha204a_probe(struct i2c_client *client, static int atmel_sha204a_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
const struct i2c_device_id *id = i2c_client_get_device_id(client);
struct atmel_i2c_client_priv *i2c_priv; struct atmel_i2c_client_priv *i2c_priv;
int ret; int ret;
...@@ -142,7 +142,7 @@ static const struct i2c_device_id atmel_sha204a_id[] = { ...@@ -142,7 +142,7 @@ static const struct i2c_device_id atmel_sha204a_id[] = {
MODULE_DEVICE_TABLE(i2c, atmel_sha204a_id); MODULE_DEVICE_TABLE(i2c, atmel_sha204a_id);
static struct i2c_driver atmel_sha204a_driver = { static struct i2c_driver atmel_sha204a_driver = {
.probe = atmel_sha204a_probe, .probe_new = atmel_sha204a_probe,
.remove = atmel_sha204a_remove, .remove = atmel_sha204a_remove,
.id_table = atmel_sha204a_id, .id_table = atmel_sha204a_id,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment