Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

tpm: fix type of a local variable in tpm2_map_command()

The local variable 'handle' should have the type __be32 instead of u32.

Fixes: 745b361e989a ("tpm: infrastructure for TPM spaces")
Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Reviewed-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>

+2 -2
+2 -2
drivers/char/tpm/tpm2-space.c
··· 242 242 struct tpm_space *space = &chip->work_space; 243 243 unsigned int nr_handles; 244 244 u32 attrs; 245 - u32 *handle; 245 + __be32 *handle; 246 246 int i; 247 247 248 248 i = tpm2_find_cc(chip, cc); ··· 252 252 attrs = chip->cc_attrs_tbl[i]; 253 253 nr_handles = (attrs >> TPM2_CC_ATTR_CHANDLES) & GENMASK(2, 0); 254 254 255 - handle = (u32 *)&cmd[TPM_HEADER_SIZE]; 255 + handle = (__be32 *)&cmd[TPM_HEADER_SIZE]; 256 256 for (i = 0; i < nr_handles; i++, handle++) { 257 257 if ((be32_to_cpu(*handle) & 0xFF000000) == TPM2_HT_TRANSIENT) { 258 258 if (!tpm2_map_to_phandle(space, handle))