summaryrefslogtreecommitdiffstats
path: root/target-arm/cpu.c
diff options
context:
space:
mode:
authorPeter Maydell2016-01-21 15:15:07 +0100
committerPeter Maydell2016-01-21 15:15:07 +0100
commit0faea0c7e6b729c64035b3591b184eeeeef6f1d4 (patch)
treeef6886ae5070c5b7e75f5c2a71d9e34368c47806 /target-arm/cpu.c
parenttarget-arm: Implement asidx_from_attrs (diff)
downloadqemu-0faea0c7e6b729c64035b3591b184eeeeef6f1d4.tar.gz
qemu-0faea0c7e6b729c64035b3591b184eeeeef6f1d4.tar.xz
qemu-0faea0c7e6b729c64035b3591b184eeeeef6f1d4.zip
target-arm: Implement cpu_get_phys_page_attrs_debug
Implement cpu_get_phys_page_attrs_debug instead of cpu_get_phys_page_debug. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Acked-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Diffstat (limited to 'target-arm/cpu.c')
-rw-r--r--target-arm/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-arm/cpu.c b/target-arm/cpu.c
index 808ec48420..6c34476a3d 100644
--- a/target-arm/cpu.c
+++ b/target-arm/cpu.c
@@ -1451,7 +1451,7 @@ static void arm_cpu_class_init(ObjectClass *oc, void *data)
#else
cc->do_interrupt = arm_cpu_do_interrupt;
cc->do_unaligned_access = arm_cpu_do_unaligned_access;
- cc->get_phys_page_debug = arm_cpu_get_phys_page_debug;
+ cc->get_phys_page_attrs_debug = arm_cpu_get_phys_page_attrs_debug;
cc->asidx_from_attrs = arm_asidx_from_attrs;
cc->vmsd = &vmstate_arm_cpu;
cc->virtio_is_big_endian = arm_cpu_is_big_endian;