aboutsummaryrefslogtreecommitdiff
path: root/hw/tpm
diff options
context:
space:
mode:
authorStefan Berger <stefanb@linux.vnet.ibm.com>2017-11-09 20:32:06 -0500
committerStefan Berger <stefanb@linux.vnet.ibm.com>2017-12-22 09:01:09 -0500
commit8a2306c7ed30bfc88cf7e3aced8c2867525f8d4b (patch)
tree748707adcde002f00942c2279858fd00f6cc8f6e /hw/tpm
parent0b4c7c65f882fac328f2c97398f06f16fe6d3f12 (diff)
downloadqemu-8a2306c7ed30bfc88cf7e3aced8c2867525f8d4b.zip
qemu-8a2306c7ed30bfc88cf7e3aced8c2867525f8d4b.tar.gz
qemu-8a2306c7ed30bfc88cf7e3aced8c2867525f8d4b.tar.bz2
tpm_tis: convert uint32_t to size_t
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Diffstat (limited to 'hw/tpm')
-rw-r--r--hw/tpm/tpm_tis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/tpm/tpm_tis.c b/hw/tpm/tpm_tis.c
index b8e811b..ac5f51f 100644
--- a/hw/tpm/tpm_tis.c
+++ b/hw/tpm/tpm_tis.c
@@ -974,7 +974,7 @@ static const MemoryRegionOps tpm_tis_memory_ops = {
},
};
-static int tpm_tis_do_startup_tpm(TPMState *s, uint32_t buffersize)
+static int tpm_tis_do_startup_tpm(TPMState *s, size_t buffersize)
{
return tpm_backend_startup_tpm(s->be_driver, buffersize);
}