]> git.dujemihanovic.xyz Git - u-boot.git/commit
tpm: Correct warning on 32-bit build
authorSimon Glass <sjg@chromium.org>
Sun, 7 Feb 2021 21:27:04 +0000 (14:27 -0700)
committerTom Rini <trini@konsulko.com>
Sat, 13 Mar 2021 18:14:52 +0000 (13:14 -0500)
commite7c920a22800ade845a656f7925c1977e69e95b1
tree993fd0e8c98fa2d0df23618f13f45683634cd78e
parent9586a481731c67997a09162dd41579dbc8c35db6
tpm: Correct warning on 32-bit build

Fix the warning:

drivers/tpm/tpm2_tis_sandbox.c: In function ‘sandbox_tpm2_xfer’:
drivers/tpm/tpm2_tis_sandbox.c:288:48: warning: format ‘%ld’ expects
argument of type ‘long int’, but argument 2 has type ‘size_t’
{aka ‘unsigned int’} [-Wformat=]
   printf("TPM2: Unmatching length, received: %ld, expected: %d\n",
                                              ~~^
                                              %d
          send_size, length);
          ~~~~~~~~~

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
drivers/tpm/tpm2_tis_sandbox.c