* [U-Boot] [PATCH] mpc8xxx: Fix "DRAM" message formatting
@ 2011-12-16 2:14 Kyle Moffett
2011-12-17 20:12 ` Wolfgang Denk
0 siblings, 1 reply; 2+ messages in thread
From: Kyle Moffett @ 2011-12-16 2:14 UTC (permalink / raw)
To: u-boot
When the "Detected RDIMM [...]" message was added, it broke the
pretty-printing of the DRAM information during boot.
It used to look like this:
DRAM: 2 GiB (DDR2, 64-bit, CL=4, ECC on)
DDR Chip-Select Interleaving Mode: CS0+CS1
Right now, it looks like this:
DRAM: Detected RDIMM VL493T5663D-E6M
2 GiB (DDR2, 64-bit, CL=4, ECC on)
DDR Chip-Select Interleaving Mode: CS0+CS1
After this patch, it is:
DRAM: Detected RDIMM VL493T5663D-E6M
2 GiB (DDR2, 64-bit, CL=4, ECC on)
DDR Chip-Select Interleaving Mode: CS0+CS1
Signed-off-by: Kyle Moffett <Kyle.D.Moffett@boeing.com>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Kim Phillips <kim.phillips@freescale.com>
Cc: Andy Fleming <afleming@gmail.com>
Cc: Kumar Gala <kumar.gala@freescale.com>
---
.../cpu/mpc8xxx/ddr/lc_common_dimm_params.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/powerpc/cpu/mpc8xxx/ddr/lc_common_dimm_params.c b/arch/powerpc/cpu/mpc8xxx/ddr/lc_common_dimm_params.c
index 20c7db0..3f9104c 100644
--- a/arch/powerpc/cpu/mpc8xxx/ddr/lc_common_dimm_params.c
+++ b/arch/powerpc/cpu/mpc8xxx/ddr/lc_common_dimm_params.c
@@ -209,11 +209,11 @@ compute_lowest_common_dimm_parameters(const dimm_params_t *dimm_params,
if (dimm_params[i].n_ranks) {
if (dimm_params[i].registered_dimm) {
temp1 = 1;
- printf("Detected RDIMM %s\n",
+ printf("Detected RDIMM %s\n ",
dimm_params[i].mpart);
} else {
temp2 = 1;
- printf("Detected UDIMM %s\n",
+ printf("Detected UDIMM %s\n ",
dimm_params[i].mpart);
}
}
--
1.7.7.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [U-Boot] [PATCH] mpc8xxx: Fix "DRAM" message formatting
2011-12-16 2:14 [U-Boot] [PATCH] mpc8xxx: Fix "DRAM" message formatting Kyle Moffett
@ 2011-12-17 20:12 ` Wolfgang Denk
0 siblings, 0 replies; 2+ messages in thread
From: Wolfgang Denk @ 2011-12-17 20:12 UTC (permalink / raw)
To: u-boot
Dear Kyle Moffett,
In message <1324001689-15226-1-git-send-email-Kyle.D.Moffett@boeing.com> you wrote:
> When the "Detected RDIMM [...]" message was added, it broke the
> pretty-printing of the DRAM information during boot.
>
> It used to look like this:
> DRAM: 2 GiB (DDR2, 64-bit, CL=4, ECC on)
> DDR Chip-Select Interleaving Mode: CS0+CS1
>
> Right now, it looks like this:
> DRAM: Detected RDIMM VL493T5663D-E6M
> 2 GiB (DDR2, 64-bit, CL=4, ECC on)
> DDR Chip-Select Interleaving Mode: CS0+CS1
>
> After this patch, it is:
> DRAM: Detected RDIMM VL493T5663D-E6M
> 2 GiB (DDR2, 64-bit, CL=4, ECC on)
> DDR Chip-Select Interleaving Mode: CS0+CS1
We discussed this before.
This outpout is too verbose. It should read:
DRAM: 2 GiB
And not more. Any additional information should only be printed upon
explicit request from the user.
Thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
A verbal contract isn't worth the paper it's written on.
-- Samuel Goldwyn
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-12-17 20:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-16 2:14 [U-Boot] [PATCH] mpc8xxx: Fix "DRAM" message formatting Kyle Moffett
2011-12-17 20:12 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox