diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-09-13 11:44:20 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-09-13 11:44:20 -0700 |
commit | 23f108dc9ed26100b1489f6a9e99088d4064f56b (patch) | |
tree | 0081ff5d75b81c38f084382149b95372b5ab2332 | |
parent | 847165d7c83ddb32aefab3ad4e7424fad919eb05 (diff) | |
parent | ea72883a3bf11fb09dd1ad4f8328cc040263881a (diff) | |
download | linux-stable-23f108dc9ed26100b1489f6a9e99088d4064f56b.tar.gz linux-stable-23f108dc9ed26100b1489f6a9e99088d4064f56b.tar.bz2 linux-stable-23f108dc9ed26100b1489f6a9e99088d4064f56b.zip |
Merge tag 'tpmdd-v6.6-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd
Pull tpm fix from Jarkko Sakkinen.
* tag 'tpmdd-v6.6-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd:
tpm: Fix typo in tpmrm class definition
-rw-r--r-- | drivers/char/tpm/tpm-chip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/tpm/tpm-chip.c b/drivers/char/tpm/tpm-chip.c index 23f6f2eda84c..42b1062e33cd 100644 --- a/drivers/char/tpm/tpm-chip.c +++ b/drivers/char/tpm/tpm-chip.c @@ -33,7 +33,7 @@ const struct class tpm_class = { .shutdown_pre = tpm_class_shutdown, }; const struct class tpmrm_class = { - .name = "tmprm", + .name = "tpmrm", }; dev_t tpm_devt; |