From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53130) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2cBS-00076y-AU for qemu-devel@nongnu.org; Mon, 13 Jan 2014 02:43:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W2cBJ-00053e-Uz for qemu-devel@nongnu.org; Mon, 13 Jan 2014 02:43:42 -0500 Received: from mail-qe0-x22c.google.com ([2607:f8b0:400d:c02::22c]:36299) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2cBJ-00053X-RP for qemu-devel@nongnu.org; Mon, 13 Jan 2014 02:43:33 -0500 Received: by mail-qe0-f44.google.com with SMTP id df13so1551840qeb.31 for ; Sun, 12 Jan 2014 23:43:33 -0800 (PST) From: edgar.iglesias@gmail.com Date: Mon, 13 Jan 2014 17:39:45 +1000 Message-Id: <1389598802-14977-6-git-send-email-edgar.iglesias@gmail.com> In-Reply-To: <1389598802-14977-1-git-send-email-edgar.iglesias@gmail.com> References: <1389598802-14977-1-git-send-email-edgar.iglesias@gmail.com> Subject: [Qemu-devel] [PATCH v3 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