tpm: Cast 64bit variables to int when used in DPRINTF
Cast 64bit variables to int when used in DPRINTF. They only contain 32bit of data. Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
06feaacfb4
commit
070c7607f6
@ -421,7 +421,7 @@ static void tpm_tis_dump_state(void *opaque, hwaddr addr)
|
|||||||
|
|
||||||
for (idx = 0; regs[idx] != 0xfff; idx++) {
|
for (idx = 0; regs[idx] != 0xfff; idx++) {
|
||||||
DPRINTF("tpm_tis: 0x%04x : 0x%08x\n", regs[idx],
|
DPRINTF("tpm_tis: 0x%04x : 0x%08x\n", regs[idx],
|
||||||
(uint32_t)tpm_tis_mmio_read(opaque, base + regs[idx], 4));
|
(int)tpm_tis_mmio_read(opaque, base + regs[idx], 4));
|
||||||
}
|
}
|
||||||
|
|
||||||
DPRINTF("tpm_tis: read offset : %d\n"
|
DPRINTF("tpm_tis: read offset : %d\n"
|
||||||
@ -555,7 +555,7 @@ static uint64_t tpm_tis_mmio_read(void *opaque, hwaddr addr,
|
|||||||
val >>= shift;
|
val >>= shift;
|
||||||
}
|
}
|
||||||
|
|
||||||
DPRINTF("tpm_tis: read.%u(%08x) = %08x\n", size, (int)addr, (uint32_t)val);
|
DPRINTF("tpm_tis: read.%u(%08x) = %08x\n", size, (int)addr, (int)val);
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
@ -578,7 +578,7 @@ static void tpm_tis_mmio_write_intern(void *opaque, hwaddr addr,
|
|||||||
uint16_t len;
|
uint16_t len;
|
||||||
uint32_t mask = (size == 1) ? 0xff : ((size == 2) ? 0xffff : ~0);
|
uint32_t mask = (size == 1) ? 0xff : ((size == 2) ? 0xffff : ~0);
|
||||||
|
|
||||||
DPRINTF("tpm_tis: write.%u(%08x) = %08x\n", size, (int)addr, (uint32_t)val);
|
DPRINTF("tpm_tis: write.%u(%08x) = %08x\n", size, (int)addr, (int)val);
|
||||||
|
|
||||||
if (locty == 4 && !hw_access) {
|
if (locty == 4 && !hw_access) {
|
||||||
DPRINTF("tpm_tis: Access to locality 4 only allowed from hardware\n");
|
DPRINTF("tpm_tis: Access to locality 4 only allowed from hardware\n");
|
||||||
@ -815,7 +815,7 @@ static void tpm_tis_mmio_write_intern(void *opaque, hwaddr addr,
|
|||||||
/* drop the byte */
|
/* drop the byte */
|
||||||
} else {
|
} else {
|
||||||
DPRINTF("tpm_tis: Data to send to TPM: %08x (size=%d)\n",
|
DPRINTF("tpm_tis: Data to send to TPM: %08x (size=%d)\n",
|
||||||
val, size);
|
(int)val, size);
|
||||||
if (tis->loc[locty].state == TPM_TIS_STATE_READY) {
|
if (tis->loc[locty].state == TPM_TIS_STATE_READY) {
|
||||||
tis->loc[locty].state = TPM_TIS_STATE_RECEPTION;
|
tis->loc[locty].state = TPM_TIS_STATE_RECEPTION;
|
||||||
tpm_tis_sts_set(&tis->loc[locty],
|
tpm_tis_sts_set(&tis->loc[locty],
|
||||||
|
Loading…
Reference in New Issue
Block a user