aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvi Kivity <avi@redhat.com>2011-12-19 16:01:08 +0200
committerAvi Kivity <avi@redhat.com>2012-01-03 19:19:28 +0200
commit586c6230c012d1aced38e5a5614d15052ca4ae7a (patch)
tree352bac4723b7cb3028917a34f73c9fd15eabd5d9
parentcc4aa8307c83111a0c804ae3eaf1e63f220c682e (diff)
Remove cpu_get_physical_page_desc()memory/page_desc
No longer used. Signed-off-by: Avi Kivity <avi@redhat.com>
-rw-r--r--cpu-common.h1
-rw-r--r--exec.c11
2 files changed, 0 insertions, 12 deletions
diff --git a/cpu-common.h b/cpu-common.h
index eee2fafe8..3fe44d25d 100644
--- a/cpu-common.h
+++ b/cpu-common.h
@@ -38,7 +38,6 @@ typedef unsigned long ram_addr_t;
typedef void CPUWriteMemoryFunc(void *opaque, target_phys_addr_t addr, uint32_t value);
typedef uint32_t CPUReadMemoryFunc(void *opaque, target_phys_addr_t addr);
-ram_addr_t cpu_get_physical_page_desc(target_phys_addr_t addr);
void qemu_ram_remap(ram_addr_t addr, ram_addr_t length);
/* This should only be used for ram local to a device. */
void *qemu_get_ram_ptr(ram_addr_t addr);
diff --git a/exec.c b/exec.c
index e1f7462ee..b02199b27 100644
--- a/exec.c
+++ b/exec.c
@@ -2595,17 +2595,6 @@ void cpu_register_physical_memory_log(target_phys_addr_t start_addr,
}
}
-/* XXX: temporary until new memory mapping API */
-ram_addr_t cpu_get_physical_page_desc(target_phys_addr_t addr)
-{
- PhysPageDesc *p;
-
- p = phys_page_find(addr >> TARGET_PAGE_BITS);
- if (!p)
- return IO_MEM_UNASSIGNED;
- return p->phys_offset;
-}
-
void qemu_register_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size)
{
if (kvm_enabled())