Browse Source

doc: provide a correct board_init_r definition path

This is a trivial fix in the documentation, which corrects
board_init_r() source reference.

Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Vladimir Zapolskiy 12 years ago
parent
commit
7de17781a4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      doc/README.console

+ 1 - 1
doc/README.console

@@ -74,7 +74,7 @@ You can use the following functions to access the console:
     fgetc	(like getc but redirected to a file)
 
 Remember that all FILE-related functions CANNOT be used before
-U-Boot relocation (done in 'board_init_r' in common/board.c).
+U-Boot relocation (done in 'board_init_r' in arch/*/lib/board.c).
 
 HOW CAN I USE STANDARD FILE INTO APPLICATIONS?
 ----------------------------------------------