* [PATCH] tpm: fix constant
@ 2006-05-09 16:55 Kylene Jo Hall
0 siblings, 0 replies; only message in thread
From: Kylene Jo Hall @ 2006-05-09 16:55 UTC (permalink / raw)
To: linux-kernel; +Cc: akpm, TPM Device Driver List
Fix the constant used for the base address when it cannot be determined
from ACPI. It was off by one order of magnitude.
Signed-off-by: Kylene Hall <kjhall@us.ibm.com>
---
drivers/char/tpm/tpm_tis.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
--- linux-2.6.17-rc3/drivers/char/tpm/tpm_tis.c 2006-04-26 21:19:25.000000000 -0500
+++ linux-2.6.17-rc3-tpm/drivers/char/tpm/tpm_tis.c 2006-05-09 09:39:20.281741000 -0500
@@ -55,7 +55,7 @@ enum tis_int_flags {
};
enum tis_defaults {
- TIS_MEM_BASE = 0xFED4000,
+ TIS_MEM_BASE = 0xFED40000,
TIS_MEM_LEN = 0x5000,
TIS_SHORT_TIMEOUT = 750, /* ms */
TIS_LONG_TIMEOUT = 2000, /* 2 sec */
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-05-09 16:56 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-09 16:55 [PATCH] tpm: fix constant Kylene Jo Hall
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox