Commit 40078327 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Jarkko Sakkinen

tpm: tis_i2c: Convert to i2c's .probe_new()

The probe function doesn't make use of the i2c_device_id * parameter so it
can be trivially converted.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: default avatarJarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: default avatarJarkko Sakkinen <jarkko@kernel.org>
parent 8f3fb73b
...@@ -312,8 +312,7 @@ static const struct tpm_tis_phy_ops tpm_i2c_phy_ops = { ...@@ -312,8 +312,7 @@ static const struct tpm_tis_phy_ops tpm_i2c_phy_ops = {
.verify_crc = tpm_tis_i2c_verify_crc, .verify_crc = tpm_tis_i2c_verify_crc,
}; };
static int tpm_tis_i2c_probe(struct i2c_client *dev, static int tpm_tis_i2c_probe(struct i2c_client *dev)
const struct i2c_device_id *id)
{ {
struct tpm_tis_i2c_phy *phy; struct tpm_tis_i2c_phy *phy;
const u8 crc_enable = 1; const u8 crc_enable = 1;
...@@ -380,7 +379,7 @@ static struct i2c_driver tpm_tis_i2c_driver = { ...@@ -380,7 +379,7 @@ static struct i2c_driver tpm_tis_i2c_driver = {
.pm = &tpm_tis_pm, .pm = &tpm_tis_pm,
.of_match_table = of_match_ptr(of_tis_i2c_match), .of_match_table = of_match_ptr(of_tis_i2c_match),
}, },
.probe = tpm_tis_i2c_probe, .probe_new = tpm_tis_i2c_probe,
.remove = tpm_tis_i2c_remove, .remove = tpm_tis_i2c_remove,
.id_table = tpm_tis_i2c_id, .id_table = tpm_tis_i2c_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