
On Fri, Jul 08, 2022 at 09:02:56AM +0100, Ramin Zaghi wrote:
Hi
I've searched a little to find a document that explains how to contribute to U-Boot. But couldn't find one. I hope this is the right way and who do I CC !?
This is the right way, thanks.
From f6cdf2ac9fe6ade663aa7a4ff1b2d1ac38fc2704 Mon Sep 17 00:00:00 2001 From: Ramin Zaghi rzaghi@visualSilicon.com Date: Fri, 8 Jul 2022 09:00:58 +0100 Subject: [PATCH] cmd: ti: ddr3: correct minor spelling mistake in Ti DDR3 command.
Just a spelling mistake.
Signed-off-by: Ramin Zaghi rzaghi@visualSilicon.com
cmd/ti/ddr3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/ti/ddr3.c b/cmd/ti/ddr3.c index be937a7531d04ae64a1fdb716de8d2164c7fb36b..aaaedfe9735e337f1db4c9f2ce242303157d00c8 100644 --- a/cmd/ti/ddr3.c +++ b/cmd/ti/ddr3.c @@ -286,7 +286,7 @@ static int do_ddr_test(struct cmd_tbl *cmdtp,
if ((argc == 4) && (strncmp(argv[1], "ecc_err", 8) == 0)) { if (!is_ecc_enabled()) {
- puts("ECC not enabled. Please Enable ECC any try again\n");
- puts("ECC not enabled. Please Enable ECC and try again\n");
return CMD_RET_FAILURE; }
Please note that the whitespace was destroyed here, but, it's an obvious enough change to fix when applying, thanks.