diff options
Diffstat (limited to 'drivers/char/tpm')
-rw-r--r-- | drivers/char/tpm/tpm.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/char/tpm/tpm.c b/drivers/char/tpm/tpm.c index 33e1f66e39cb..2f572b97c16d 100644 --- a/drivers/char/tpm/tpm.c +++ b/drivers/char/tpm/tpm.c | |||
@@ -1107,9 +1107,8 @@ struct tpm_chip *tpm_register_hardware(struct device *dev, const struct tpm_vend | |||
1107 | 1107 | ||
1108 | INIT_WORK(&chip->work, timeout_work); | 1108 | INIT_WORK(&chip->work, timeout_work); |
1109 | 1109 | ||
1110 | init_timer(&chip->user_read_timer); | 1110 | setup_timer(&chip->user_read_timer, user_reader_timeout, |
1111 | chip->user_read_timer.function = user_reader_timeout; | 1111 | (unsigned long)chip); |
1112 | chip->user_read_timer.data = (unsigned long) chip; | ||
1113 | 1112 | ||
1114 | memcpy(&chip->vendor, entry, sizeof(struct tpm_vendor_specific)); | 1113 | memcpy(&chip->vendor, entry, sizeof(struct tpm_vendor_specific)); |
1115 | 1114 | ||