aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char
diff options
context:
space:
mode:
authorHon Ching \(Vicky\) Lo <honclo@linux.vnet.ibm.com>2015-06-17 18:17:09 -0400
committerPeter Huewe <peterhuewe@gmx.de>2015-10-18 19:09:31 -0400
commitd72c39114c3f36785bb71aaf9dea642e59723abc (patch)
tree3af2cbac55ee221de6ef9789ec7e6bac81f1eeeb /drivers/char
parent0cc698af36ff22295dce2f5e46b0cfe605789fa4 (diff)
TPM: remove unnecessary little endian conversion
The base pointer for the event log is allocated in the local kernel (in prom_instantiate_sml()), therefore it is already in the host's endian byte order and requires no conversion. The content of the 'basep' pointer in read_log() stores the base address of the log. This patch ensures that it is correctly implemented. Signed-off-by: Hon Ching(Vicky) Lo <honclo@linux.vnet.ibm.com> Signed-off-by: Joy Latten <jmlatten@linux.vnet.ibm.com> Reviewed-by: Ashley Lai <ashley@ahsleylai.com> Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Diffstat (limited to 'drivers/char')
-rw-r--r--drivers/char/tpm/tpm_of.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/tpm/tpm_of.c b/drivers/char/tpm/tpm_of.c
index 66b3be417ccc..1141456a4b1f 100644
--- a/drivers/char/tpm/tpm_of.c
+++ b/drivers/char/tpm/tpm_of.c
@@ -24,7 +24,7 @@ int read_log(struct tpm_bios_log *log)
24{ 24{
25 struct device_node *np; 25 struct device_node *np;
26 const u32 *sizep; 26 const u32 *sizep;
27 const __be64 *basep; 27 const u64 *basep;
28 28
29 if (log->bios_event_log != NULL) { 29 if (log->bios_event_log != NULL) {
30 pr_err("%s: ERROR - Eventlog already initialized\n", __func__); 30 pr_err("%s: ERROR - Eventlog already initialized\n", __func__);
@@ -63,7 +63,7 @@ int read_log(struct tpm_bios_log *log)
63 63
64 log->bios_event_log_end = log->bios_event_log + *sizep; 64 log->bios_event_log_end = log->bios_event_log + *sizep;
65 65
66 memcpy(log->bios_event_log, __va(be64_to_cpup(basep)), *sizep); 66 memcpy(log->bios_event_log, __va(*basep), *sizep);
67 67
68 return 0; 68 return 0;
69 69