From: Hon Ching \(Vicky\) Lo Date: Wed, 17 Jun 2015 22:17:09 +0000 (-0400) Subject: TPM: remove unnecessary little endian conversion X-Git-Tag: v4.13~4221^2~5 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=d72c39114c3f36785bb71aaf9dea642e59723abc;p=mirror_ubuntu-bionic-kernel.git 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 Signed-off-by: Joy Latten Reviewed-by: Ashley Lai Signed-off-by: Peter Huewe --- 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) { struct device_node *np; const u32 *sizep; - const __be64 *basep; + const u64 *basep; if (log->bios_event_log != NULL) { pr_err("%s: ERROR - Eventlog already initialized\n", __func__); @@ -63,7 +63,7 @@ int read_log(struct tpm_bios_log *log) log->bios_event_log_end = log->bios_event_log + *sizep; - memcpy(log->bios_event_log, __va(be64_to_cpup(basep)), *sizep); + memcpy(log->bios_event_log, __va(*basep), *sizep); return 0;