From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41821) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VTrwu-0004qp-JL for qemu-devel@nongnu.org; Wed, 09 Oct 2013 07:29:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VTrwn-000187-Qs for qemu-devel@nongnu.org; Wed, 09 Oct 2013 07:29:04 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52357) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VTrwn-00017D-JG for qemu-devel@nongnu.org; Wed, 09 Oct 2013 07:28:57 -0400 From: Juan Quintela Date: Wed, 9 Oct 2013 13:28:23 +0200 Message-Id: <1381318130-10620-2-git-send-email-quintela@redhat.com> In-Reply-To: <1381318130-10620-1-git-send-email-quintela@redhat.com> References: <1381318130-10620-1-git-send-email-quintela@redhat.com> Subject: [Qemu-devel] [PATCH 01/28] Move prototypes to memory.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: chegu_vinod@hp.com As the comment says, it should only be used on "core" memory files. Signed-off-by: Juan Quintela --- include/exec/cpu-common.h | 4 ---- include/exec/memory.h | 4 +++- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h index e4996e1..8110ef0 100644 --- a/include/exec/cpu-common.h +++ b/include/exec/cpu-common.h @@ -51,10 +51,6 @@ typedef void CPUWriteMemoryFunc(void *opaque, hwaddr addr, uint32_t value); typedef uint32_t CPUReadMemoryFunc(void *opaque, hwaddr addr); void qemu_ram_remap(ram_addr_t addr, ram_addr_t length); -/* This should not be used by devices. */ -MemoryRegion *qemu_ram_addr_from_host(void *ptr, ram_addr_t *ram_addr); -void qemu_ram_set_idstr(ram_addr_t addr, const char *name, DeviceState *dev); - void cpu_physical_memory_rw(hwaddr addr, uint8_t *buf, int len, int is_write); static inline void cpu_physical_memory_read(hwaddr addr, diff --git a/include/exec/memory.h b/include/exec/memory.h index ebe0d24..04e69cf 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -1055,7 +1055,9 @@ void *address_space_map(AddressSpace *as, hwaddr addr, void address_space_unmap(AddressSpace *as, void *buffer, hwaddr len, int is_write, hwaddr access_len); - +/* This should not be used by devices. */ +MemoryRegion *qemu_ram_addr_from_host(void *ptr, ram_addr_t *ram_addr); +void qemu_ram_set_idstr(ram_addr_t addr, const char *name, DeviceState *dev); #endif #endif -- 1.8.3.1