asm/u-boot.h: remove bd_t definitions
authorMasahiro Yamada <masahiroy@kernel.org>
Fri, 26 Jun 2020 06:13:35 +0000 (15:13 +0900)
committerTom Rini <trini@konsulko.com>
Fri, 17 Jul 2020 14:47:19 +0000 (10:47 -0400)
All the users of bd_t were converted to struct bd_info.

Remove the definitions.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
include/asm-generic/u-boot.h

index 008ebf3..62e61d4 100644 (file)
@@ -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__ */