Skip to content

Commit

Permalink
asm/u-boot.h: remove bd_t definitions
Browse files Browse the repository at this point in the history
All the users of bd_t were converted to struct bd_info.

Remove the definitions.

Signed-off-by: Masahiro Yamada <[email protected]>
  • Loading branch information
masahir0y authored and trini committed Jul 17, 2020
1 parent bb5a2cf commit 36da57a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/asm-generic/u-boot.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down Expand Up @@ -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__ */

Expand Down

0 comments on commit 36da57a

Please sign in to comment.