diff options
author | Andrew Morton <akpm@osdl.org> | 2005-10-30 18:03:28 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-10-30 20:37:29 -0500 |
commit | b888c87b7498557d1dbb9de3d4b8402b1bb89193 (patch) | |
tree | 31d43ab177ef00fbef3d15c9513ba737029b6d48 /drivers/char/tpm/tpm_infineon.c | |
parent | 1b8333b02aa281a2849331ad62ee595c46a1c5ac (diff) |
[PATCH] tpm-tidies
- Various whitespace fixes
- Use kzalloc()
Acked-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_infineon.c')
-rw-r--r-- | drivers/char/tpm/tpm_infineon.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/char/tpm/tpm_infineon.c b/drivers/char/tpm/tpm_infineon.c index d356f53c49b4..8198dbb7370f 100644 --- a/drivers/char/tpm/tpm_infineon.c +++ b/drivers/char/tpm/tpm_infineon.c | |||
@@ -30,10 +30,10 @@ | |||
30 | #define TPM_INFINEON_DEV_VEN_VALUE 0x15D1 | 30 | #define TPM_INFINEON_DEV_VEN_VALUE 0x15D1 |
31 | 31 | ||
32 | /* These values will be filled after PnP-call */ | 32 | /* These values will be filled after PnP-call */ |
33 | static int TPM_INF_DATA = 0; | 33 | static int TPM_INF_DATA; |
34 | static int TPM_INF_ADDR = 0; | 34 | static int TPM_INF_ADDR; |
35 | static int TPM_INF_BASE = 0; | 35 | static int TPM_INF_BASE; |
36 | static int TPM_INF_PORT_LEN = 0; | 36 | static int TPM_INF_PORT_LEN; |
37 | 37 | ||
38 | /* TPM header definitions */ | 38 | /* TPM header definitions */ |
39 | enum infineon_tpm_header { | 39 | enum infineon_tpm_header { |