qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 3/4] bamboo, sam460ex: Tidy up error message for unsupported


From: Philippe Mathieu-Daudé
Subject: Re: [PATCH 3/4] bamboo, sam460ex: Tidy up error message for unsupported RAM size
Date: Mon, 20 Apr 2020 15:50:25 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.5.0



On 4/20/20 3:28 PM, Markus Armbruster wrote:
Improve

     $ ppc-softmmu/qemu-system-ppc -M sam460ex -m 4096
     qemu-system-ppc: Max 1 banks of 2048 ,1024 ,512 ,256 ,128 ,64 ,32 MB 
DIMM/bank supported
     qemu-system-ppc: Possible valid RAM size: 2048

to

     qemu-system-ppc: Max 1 banks of 2048, 1024, 512, 256, 128, 64, 32 MB 
DIMM/bank supported
     Possible valid RAM size: 2048

Signed-off-by: Markus Armbruster <address@hidden>
---
  hw/ppc/ppc4xx_devs.c | 4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/ppc/ppc4xx_devs.c b/hw/ppc/ppc4xx_devs.c
index 3376c43ff5..dea39546ad 100644
--- a/hw/ppc/ppc4xx_devs.c
+++ b/hw/ppc/ppc4xx_devs.c
@@ -716,11 +716,11 @@ void ppc4xx_sdram_banks(MemoryRegion *ram, int nr_banks,
          for (i = 0; sdram_bank_sizes[i]; i++) {
              g_string_append_printf(s, "%" PRIi64 "%s",
                                     sdram_bank_sizes[i] / MiB,
-                                   sdram_bank_sizes[i + 1] ? " ," : "");
+                                   sdram_bank_sizes[i + 1] ? ", " : "");
          }
          error_report("Max %d banks of %s MB DIMM/bank supported",
              nr_banks, s->str);
-        error_report("Possible valid RAM size: %" PRIi64,
+        error_printf("Possible valid RAM size: %" PRIi64 "\n",

Maybe nicer:

           error_printf("Possible valid RAM size: %" PRIi64 " MB\n",

Regardless
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>

              used_size ? used_size / MiB : sdram_bank_sizes[i - 1] / MiB);
g_string_free(s, true);





reply via email to

[Prev in Thread] Current Thread [Next in Thread]