diff options
author | Paul Durrant <paul.durrant@citrix.com> | 2015-07-07 14:32:38 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2015-07-08 15:51:03 +0100 |
commit | d09952ee8caeea928695d5a3dc3ec50d8afb98c6 (patch) | |
tree | 02b2913a16ffe44c739d3499f1ef0845f892a941 | |
parent | c8232b39bb18a91cde39b8e0b60e731a4ce782b1 (diff) |
Fix the compatibility typedef of ioservid_t to match the Xen headers
There is a mismatch between the definition of ioservid_t in
xen_common.h and the definition in the Xen public headers. This patch
corrects the definition in xen_common.h.
Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
Tested-by: Michael S. Tsirkin <mst@redhat.com>
Message-id: 1436275958-25174-1-git-send-email-paul.durrant@citrix.com
Cc: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | include/hw/xen/xen_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/xen/xen_common.h b/include/hw/xen/xen_common.h index 38f29fb098..ed5fd3e1a2 100644 --- a/include/hw/xen/xen_common.h +++ b/include/hw/xen/xen_common.h @@ -195,7 +195,7 @@ static inline int xen_get_vmport_regs_pfn(XenXC xc, domid_t dom, #define IOREQ_TYPE_PCI_CONFIG 2 -typedef uint32_t ioservid_t; +typedef uint16_t ioservid_t; static inline void xen_map_memory_section(XenXC xc, domid_t dom, ioservid_t ioservid, |