summaryrefslogtreecommitdiffstats
path: root/hw/net/vmware_utils.h
diff options
context:
space:
mode:
authorPeter Maydell2016-01-22 16:19:20 +0100
committerPeter Maydell2016-01-22 16:19:21 +0100
commit047e363b05679724d6b784c6ec6310697fe48ba0 (patch)
tree17570c0192a633520edf87b8371e4b0befaf82fc /hw/net/vmware_utils.h
parentMerge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging (diff)
parentsoftfloat: fix return type of roundAndPackFloat16 (diff)
downloadqemu-047e363b05679724d6b784c6ec6310697fe48ba0.tar.gz
qemu-047e363b05679724d6b784c6ec6310697fe48ba0.tar.xz
qemu-047e363b05679724d6b784c6ec6310697fe48ba0.zip
Merge remote-tracking branch 'remotes/pmaydell/tags/pull-softfloat-20160122' into staging
softfloat: * drop confusing softfloat-only types * fix return type of roundAndPackFloat16 # gpg: Signature made Fri 22 Jan 2016 15:15:17 GMT using RSA key ID 14360CDE # gpg: Good signature from "Peter Maydell <peter.maydell@linaro.org>" # gpg: aka "Peter Maydell <pmaydell@gmail.com>" # gpg: aka "Peter Maydell <pmaydell@chiark.greenend.org.uk>" * remotes/pmaydell/tags/pull-softfloat-20160122: softfloat: fix return type of roundAndPackFloat16 fpu: Replace uint8 typedef with uint8_t fpu: Replace int8 typedef with int8_t fpu: Replace uint32 typedef with uint32_t fpu: Replace int32 typedef with int32_t fpu: Replace uint64 typedef with uint64_t fpu: Replace int64 typedef with int64_t Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/net/vmware_utils.h')
-rw-r--r--hw/net/vmware_utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/net/vmware_utils.h b/hw/net/vmware_utils.h
index c2c2f900fa..c0dbb2ff41 100644
--- a/hw/net/vmware_utils.h
+++ b/hw/net/vmware_utils.h
@@ -49,7 +49,7 @@ vmw_shmem_rw(hwaddr addr, void *buf, int len, int is_write)
}
static inline void
-vmw_shmem_set(hwaddr addr, uint8 val, int len)
+vmw_shmem_set(hwaddr addr, uint8_t val, int len)
{
int i;
VMW_SHPRN("SHMEM set: %" PRIx64 ", len: %d (value 0x%X)", addr, len, val);