projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f3fb73
)
tpm: tis_i2c: Convert to i2c's .probe_new()
author
Uwe Kleine-König
<u.kleine-koenig@pengutronix.de>
Fri, 18 Nov 2022 22:35:39 +0000
(23:35 +0100)
committer
Jarkko Sakkinen
<jarkko@kernel.org>
Mon, 13 Feb 2023 08:11:20 +0000
(10:11 +0200)
The probe function doesn't make use of the i2c_device_id * parameter so it
can be trivially converted.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Jarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
drivers/char/tpm/tpm_tis_i2c.c
patch
|
blob
|
history
diff --git
a/drivers/char/tpm/tpm_tis_i2c.c
b/drivers/char/tpm/tpm_tis_i2c.c
index f3a7251c8e38fbe9d19d972d7adde1bf5e16f48f..c8c34adc14c0e021ab15d89439ff8b2a2a7ac480 100644
(file)
--- a/
drivers/char/tpm/tpm_tis_i2c.c
+++ b/
drivers/char/tpm/tpm_tis_i2c.c
@@
-312,8
+312,7
@@
static const struct tpm_tis_phy_ops tpm_i2c_phy_ops = {
.verify_crc = tpm_tis_i2c_verify_crc,
};
-static int tpm_tis_i2c_probe(struct i2c_client *dev,
- const struct i2c_device_id *id)
+static int tpm_tis_i2c_probe(struct i2c_client *dev)
{
struct tpm_tis_i2c_phy *phy;
const u8 crc_enable = 1;
@@
-380,7
+379,7
@@
static struct i2c_driver tpm_tis_i2c_driver = {
.pm = &tpm_tis_pm,
.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,
.id_table = tpm_tis_i2c_id,
};