OSDN Git Service

ppc4xx: correct SDRAM controller warning message condition
authorHollis Blanchard <hollis@penguinppc.org>
Thu, 5 Aug 2010 00:21:35 +0000 (17:21 -0700)
committerAlexander Graf <agraf@suse.de>
Thu, 26 Aug 2010 16:18:26 +0000 (18:18 +0200)
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>
hw/ppc4xx_devs.c

index b15db81..be130c4 100644 (file)
@@ -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));