diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-06-26 15:13:34 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-07-17 10:46:44 -0400 |
commit | bb5a2cf9f99731915359b67b52eba307db86fff9 (patch) | |
tree | d92567df96f5a383ad01ca3b51a01b6cec504784 /doc/README.generic-board | |
parent | b75d8dc5642b71eb029e7cd38031a32029e736cc (diff) |
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-board | 2 |
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. |