From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59861) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZCSzT-0005BD-Ht for qemu-devel@nongnu.org; Tue, 07 Jul 2015 09:32:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZCSzP-0008LL-7Y for qemu-devel@nongnu.org; Tue, 07 Jul 2015 09:32:51 -0400 Received: from smtp02.citrix.com ([66.165.176.63]:17340) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZCSzP-0008LG-2R for qemu-devel@nongnu.org; Tue, 07 Jul 2015 09:32:47 -0400 From: Paul Durrant Date: Tue, 7 Jul 2015 14:32:38 +0100 Message-ID: <1436275958-25174-1-git-send-email-paul.durrant@citrix.com> MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH] Fix the compatibility typedef of ioservid_t to match the Xen headers List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, xen-devel@lists.xenproject.org, "Michael S . Tsirkin" Cc: Paul Durrant , Stefano Stabellini There is a mismatch between the definition of ioservid_t in xen_common.h and the definition in the Xen publix headers. This patch corrects the definition in xen_common.h. Signed-off-by: Paul Durrant Cc: Stefano Stabellini --- include/hw/xen/xen_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hw/xen/xen_common.h b/include/hw/xen/xen_common.h index 38f29fb..ed5fd3e 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, -- 1.7.10.4