diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2013-05-22 08:22:36 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-05-22 08:22:36 -0500 |
commit | 95de21a430f7bc4166a153b1f69b1425c8a99c7b (patch) | |
tree | ed0754df09c7e0bd9bafce52cffdd8257a687897 /target-moxie | |
parent | 3459f01b2d9612070ec23221a4ccb60a41b775ae (diff) | |
parent | d2ad50210b35c2685640f7df931a0fccb49334f7 (diff) |
Merge remote-tracking branch 'mjt/trivial-patches' into staging
# By Christophe Lyon (1) and others
# Via Michael Tokarev
* mjt/trivial-patches:
target-moxie: replace target_phys_addr_t with hwaddr
Rename hexdump to avoid FreeBSD libutil conflict
remove some double-includes
translate: remove redundantly included qemu/timer.h
Remove twice include of qemu-common.h
fix /proc/self/maps output
Message-id: 51977B44.1000302@msgid.tls.msk.ru
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'target-moxie')
-rw-r--r-- | target-moxie/helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-moxie/helper.c b/target-moxie/helper.c index 6e0ac2aa2a..5cfe889ad4 100644 --- a/target-moxie/helper.c +++ b/target-moxie/helper.c @@ -116,7 +116,7 @@ int cpu_moxie_handle_mmu_fault(CPUMoxieState *env, target_ulong address, return 1; } -target_phys_addr_t cpu_get_phys_page_debug(CPUState *env, target_ulong addr) +hwaddr cpu_get_phys_page_debug(CPUState *env, target_ulong addr) { return addr; } |