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>
This commit is contained in:
parent
bb5a2cf9f9
commit
36da57aa87
@ -26,7 +26,7 @@
|
|||||||
#include <asm/types.h>
|
#include <asm/types.h>
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
|
||||||
typedef struct bd_info {
|
struct bd_info {
|
||||||
unsigned long bi_memstart; /* start of DRAM memory */
|
unsigned long bi_memstart; /* start of DRAM memory */
|
||||||
phys_size_t bi_memsize; /* size of DRAM memory in bytes */
|
phys_size_t bi_memsize; /* size of DRAM memory in bytes */
|
||||||
unsigned long bi_flashstart; /* start of FLASH memory */
|
unsigned long bi_flashstart; /* start of FLASH memory */
|
||||||
@ -76,7 +76,7 @@ typedef struct bd_info {
|
|||||||
phys_size_t size;
|
phys_size_t size;
|
||||||
} bi_dram[CONFIG_NR_DRAM_BANKS];
|
} bi_dram[CONFIG_NR_DRAM_BANKS];
|
||||||
#endif /* CONFIG_NR_DRAM_BANKS */
|
#endif /* CONFIG_NR_DRAM_BANKS */
|
||||||
} bd_t;
|
};
|
||||||
|
|
||||||
#endif /* __ASSEMBLY__ */
|
#endif /* __ASSEMBLY__ */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user