diff options
author | Kylene Jo Hall <kjhall@us.ibm.com> | 2006-04-22 05:37:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-22 12:19:53 -0400 |
commit | 90dda520c1962d55a0e1d2571deed0d75fd6d6f1 (patch) | |
tree | 38d0da2fbeabb595f248f6029e470a1f2acd763a /drivers/char/tpm/tpm.h | |
parent | beed53a1aaeaae4eb93297c23f1598a726716adf (diff) |
[PATCH] tpm: chip struct update
To assist with chip management and better support the possibility of having
multiple TPMs in the system of the same kind, the struct tpm_vendor_specific
member of the tpm_chip was changed from a pointer to an instance. This patch
changes that declaration and fixes up all accesses to the structure member
except in tpm_infineon which is coming in a patch from Marcel Selhorst.
Signed-off-by: Kylene Hall <kjhall@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/tpm/tpm.h')
-rw-r--r-- | drivers/char/tpm/tpm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/tpm/tpm.h b/drivers/char/tpm/tpm.h index dec0224b4478..a203963efaab 100644 --- a/drivers/char/tpm/tpm.h +++ b/drivers/char/tpm/tpm.h | |||
@@ -81,7 +81,7 @@ struct tpm_chip { | |||
81 | struct work_struct work; | 81 | struct work_struct work; |
82 | struct semaphore tpm_mutex; /* tpm is processing */ | 82 | struct semaphore tpm_mutex; /* tpm is processing */ |
83 | 83 | ||
84 | struct tpm_vendor_specific *vendor; | 84 | struct tpm_vendor_specific vendor; |
85 | 85 | ||
86 | struct dentry **bios_dir; | 86 | struct dentry **bios_dir; |
87 | 87 | ||