diff mbox series

README: Fix typo in Board Initialisation Flow

Message ID 6e0fd919-f7e9-6ee5-2379-144be42e06a4@lineo.co.jp
State Accepted
Commit 499696e40a3201a2803303f0b4fb7c2a27029c6c
Delegated to: Tom Rini
Headers show
Series README: Fix typo in Board Initialisation Flow | expand

Commit Message

Naoki Hayama Sept. 24, 2020, 6:57 a.m. UTC
I suppose 'these' might be 'there'.

Signed-off-by: Naoki Hayama <naoki.hayama@lineo.co.jp>
---
 README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini Sept. 30, 2020, 12:50 p.m. UTC | #1
On Thu, Sep 24, 2020 at 03:57:19PM +0900, Naoki Hayama wrote:

> I suppose 'these' might be 'there'.
> 
> Signed-off-by: Naoki Hayama <naoki.hayama@lineo.co.jp>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/README b/README
index 6cb0567ba6..b23fcc1190 100644
--- a/README
+++ b/README
@@ -266,7 +266,7 @@  board_init_f():
 		version as needed.
 	- preloader_console_init() can be called here in extremis
 	- should set up SDRAM, and anything needed to make the UART work
-	- these is no need to clear BSS, it will be done by crt0.S
+	- there is no need to clear BSS, it will be done by crt0.S
 	- for specific scenarios on certain architectures an early BSS *can*
 	  be made available (via CONFIG_SPL_EARLY_BSS by moving the clearing
 	  of BSS prior to entering board_init_f()) but doing so is discouraged.