diff options
author | Hollis Blanchard <hollis@penguinppc.org> | 2010-08-04 17:21:35 -0700 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2010-08-26 18:18:26 +0200 |
commit | d23ab92064dd40c668b55544b9b654591e8b963c (patch) | |
tree | 0b321d3e6e2ce04afc2491f6fd9c155b2cea59d1 /hw/ppc4xx_devs.c | |
parent | 52ba784d357fac20e137cf1393437437c43a3fc4 (diff) |
ppc4xx: correct SDRAM controller warning message condition
The message "Truncating memory to %d MiB to fit SDRAM controller limits"
should be displayed only when a user chooses an amount of RAM which
can't be represented by the PPC 4xx SDRAM controller (e.g. 129MB, which
would only be valid if the controller supports a bank size of 1MB).
Signed-off-by: Hollis Blanchard <hollis@penguinppc.org>
Diffstat (limited to 'hw/ppc4xx_devs.c')
-rw-r--r-- | hw/ppc4xx_devs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc4xx_devs.c b/hw/ppc4xx_devs.c index b15db81b6a..be130c41f2 100644 --- a/hw/ppc4xx_devs.c +++ b/hw/ppc4xx_devs.c @@ -684,7 +684,7 @@ ram_addr_t ppc4xx_sdram_adjust(ram_addr_t ram_size, int nr_banks, } ram_size -= size_left; - if (ram_size) + if (size_left) printf("Truncating memory to %d MiB to fit SDRAM controller limits.\n", (int)(ram_size >> 20)); |