summaryrefslogtreecommitdiffstats
path: root/doc/README.generic-board
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2020-06-26 15:13:34 +0900
committerTom Rini <trini@konsulko.com>2020-07-17 10:46:44 -0400
commitbb5a2cf9f99731915359b67b52eba307db86fff9 (patch)
treed92567df96f5a383ad01ca3b51a01b6cec504784 /doc/README.generic-board
parentb75d8dc5642b71eb029e7cd38031a32029e736cc (diff)
downloadu-boot-bb5a2cf9f99731915359b67b52eba307db86fff9.tar.gz
u-boot-bb5a2cf9f99731915359b67b52eba307db86fff9.tar.xz
u-boot-bb5a2cf9f99731915359b67b52eba307db86fff9.zip
treewide: convert bd_t to struct bd_info manually
Some code was not converted by coccinelle, somehow. I manually fixed up the remaining, and comments, README docs. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> [trini: Add arch/arm/mach-davinci/include/mach/sdmmc_defs.h and include/fdt_support.h] Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'doc/README.generic-board')
-rw-r--r--doc/README.generic-board2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/README.generic-board b/doc/README.generic-board
index 32ddb1d19a..bc35179fbf 100644
--- a/doc/README.generic-board
+++ b/doc/README.generic-board
@@ -22,7 +22,7 @@ The main change is that the arch/<arch>/lib/board.c file is removed in
favour of common/board_f.c (for pre-relocation init) and common/board_r.c
(for post-relocation init).
-Related to this, the global_data and bd_t structures now have a core set of
+Related to this, the global_data and bd_info structures now have a core set of
fields which are common to all architectures. Architecture-specific fields
have been moved to separate structures.