summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2020-06-26 09:13:35 +0300
committerTom Rini <trini@konsulko.com>2020-07-17 17:47:19 +0300
commit36da57aa8784af486b79b49d1e644f2ca20f9e3a (patch)
tree0b891ffb0573ed451a8d3ea4188a9c93cd4ab261 /include
parentbb5a2cf9f99731915359b67b52eba307db86fff9 (diff)
downloadu-boot-36da57aa8784af486b79b49d1e644f2ca20f9e3a.tar.xz
asm/u-boot.h: remove bd_t definitions
All the users of bd_t were converted to struct bd_info. Remove the definitions. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'include')
-rw-r--r--include/asm-generic/u-boot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-generic/u-boot.h b/include/asm-generic/u-boot.h
index 008ebf3ca3..62e61d41cc 100644
--- a/include/asm-generic/u-boot.h
+++ b/include/asm-generic/u-boot.h
@@ -26,7 +26,7 @@
#include <asm/types.h>
#include <linux/types.h>
-typedef struct bd_info {
+struct bd_info {
unsigned long bi_memstart; /* start of DRAM memory */
phys_size_t bi_memsize; /* size of DRAM memory in bytes */
unsigned long bi_flashstart; /* start of FLASH memory */
@@ -76,7 +76,7 @@ typedef struct bd_info {
phys_size_t size;
} bi_dram[CONFIG_NR_DRAM_BANKS];
#endif /* CONFIG_NR_DRAM_BANKS */
-} bd_t;
+};
#endif /* __ASSEMBLY__ */