]> git.proxmox.com Git - qemu.git/commitdiff
Drop unnecessary check of TARGET_PHYS_ADDR_SPACE_BITS
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 5 Oct 2012 07:09:02 +0000 (07:09 +0000)
committerAlexander Graf <agraf@suse.de>
Mon, 29 Oct 2012 10:45:53 +0000 (11:45 +0100)
For all our PPC targets the physical address space is at least
36 bits, so drop an unnecessary preprocessor conditional check
on TARGET_PHYS_ADDR_SPACE_BITS (erroneously introduced as part
of the change from target_phys_addr_t to hwaddr). This brings
this bit of code into line with the way we handle the other
cases which were originally checking TARGET_PHYS_ADDR_BITS in
order to avoid compiler complaints about overflowing a 32 bit type.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Alexander Graf <agraf@suse.de>
target-ppc/mmu_helper.c

index 4a9bb5b96570ac2930abd5b9e4d55f1cf2a253b4..811f47f30906b1a57501276326b424831c7f39d0 100644 (file)
@@ -1509,10 +1509,8 @@ static void mmubooke_dump_mmu(FILE *f, fprintf_function cpu_fprintf,
         mask = ~(entry->size - 1);
         ea = entry->EPN & mask;
         pa = entry->RPN & mask;
-#if (TARGET_PHYS_ADDR_SPACE_BITS >= 36)
         /* Extend the physical address to 36 bits */
         pa |= (hwaddr)(entry->RPN & 0xF) << 32;
-#endif
         size /= 1024;
         if (size >= 1024) {
             snprintf(size_buf, sizeof(size_buf), "%3" PRId64 "M", size / 1024);