From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52199) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VsTFK-0004ox-9m for qemu-devel@nongnu.org; Mon, 16 Dec 2013 03:09:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VsTFC-0003In-Qh for qemu-devel@nongnu.org; Mon, 16 Dec 2013 03:09:46 -0500 Received: from mail-pa0-x233.google.com ([2607:f8b0:400e:c03::233]:45371) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VsTFC-0003If-Dj for qemu-devel@nongnu.org; Mon, 16 Dec 2013 03:09:38 -0500 Received: by mail-pa0-f51.google.com with SMTP id fa1so2625057pad.38 for ; Mon, 16 Dec 2013 00:09:37 -0800 (PST) From: edgar.iglesias@gmail.com Date: Mon, 16 Dec 2013 18:05:53 +1000 Message-Id: <1387181170-23267-6-git-send-email-edgar.iglesias@gmail.com> In-Reply-To: <1387181170-23267-1-git-send-email-edgar.iglesias@gmail.com> References: <1387181170-23267-1-git-send-email-edgar.iglesias@gmail.com> Subject: [Qemu-devel] [PATCH v1 05/22] memory: Add MemoryListener to typedefs.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, blauwirbel@gmail.com, aliguori@amazon.com, pcrost@xilinx.com, pbonzini@redhat.com, afaerber@suse.de, aurelien@aurel32.net, rth@twiddle.net From: "Edgar E. Iglesias" Signed-off-by: Edgar E. Iglesias --- include/exec/memory.h | 2 -- include/qemu/typedefs.h | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/include/exec/memory.h b/include/exec/memory.h index 480dfbf..2d0b614 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -165,8 +165,6 @@ struct MemoryRegion { NotifierList iommu_notify; }; -typedef struct MemoryListener MemoryListener; - /** * MemoryListener: callbacks structure for updates to the physical memory map * diff --git a/include/qemu/typedefs.h b/include/qemu/typedefs.h index a4c1b84..425ca1a 100644 --- a/include/qemu/typedefs.h +++ b/include/qemu/typedefs.h @@ -24,6 +24,7 @@ typedef struct BusClass BusClass; typedef struct AddressSpace AddressSpace; typedef struct MemoryRegion MemoryRegion; typedef struct MemoryRegionSection MemoryRegionSection; +typedef struct MemoryListener MemoryListener; typedef struct MemoryMappingList MemoryMappingList; -- 1.7.10.4