diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2015-12-14 17:36:22 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-01-08 13:32:55 +0000 |
commit | 74267bac4a7089d42a52fe4ead4438245b962a30 (patch) | |
tree | 6812aa9807ef67d5ddf95c08398d3efbb6cf9baf /target-arm/cpu.c | |
parent | f785d59aaeadd4d8f1707f2c5fffcf143de9da2c (diff) | |
download | qemu-arm-74267bac4a7089d42a52fe4ead4438245b962a30.tar.gz |
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>
Diffstat (limited to 'target-arm/cpu.c')
-rw-r--r-- | target-arm/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-arm/cpu.c b/target-arm/cpu.c index ab0021e860..4b21e248d3 100644 --- a/target-arm/cpu.c +++ b/target-arm/cpu.c @@ -1450,7 +1450,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; |