mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
tpm: Add explicit endianness cast
Signed-off-by: Thiebaud Weksteen <tweek@google.com> Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> Tested-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
This commit is contained in:
parent
f20b4f2245
commit
09dd144f72
@ -56,8 +56,8 @@ int tpm_read_log_of(struct tpm_chip *chip)
|
||||
* but physical tpm needs the conversion.
|
||||
*/
|
||||
if (of_property_match_string(np, "compatible", "IBM,vtpm") < 0) {
|
||||
size = be32_to_cpup(sizep);
|
||||
base = be64_to_cpup(basep);
|
||||
size = be32_to_cpup((__force __be32 *)sizep);
|
||||
base = be64_to_cpup((__force __be64 *)basep);
|
||||
} else {
|
||||
size = *sizep;
|
||||
base = *basep;
|
||||
|
Loading…
Reference in New Issue
Block a user