Commit b8ed0bff authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Herbert Xu
Browse files

crypto: atmel-ecc - 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 c060e16d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -311,9 +311,9 @@ static struct kpp_alg atmel_ecdh_nist_p256 = {
	},
};

static int atmel_ecc_probe(struct i2c_client *client,
			   const struct i2c_device_id *id)
static int atmel_ecc_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;

@@ -390,7 +390,7 @@ static struct i2c_driver atmel_ecc_driver = {
		.name	= "atmel-ecc",
		.of_match_table = of_match_ptr(atmel_ecc_dt_ids),
	},
	.probe		= atmel_ecc_probe,
	.probe_new	= atmel_ecc_probe,
	.remove		= atmel_ecc_remove,
	.id_table	= atmel_ecc_id,
};