diff options
author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2006-12-17 14:46:06 +0100 |
---|---|---|
committer | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-04-14 15:20:27 +0200 |
commit | 12f099c08167a7a51aeee623bc16dafd0841271c (patch) | |
tree | 99a369b9f30f3e62aa103742d584f017fe33af30 /include | |
parent | 1f4f2121c2685182eb87fa9a9b799d1917387a1c (diff) | |
download | u-boot-imx-12f099c08167a7a51aeee623bc16dafd0841271c.zip u-boot-imx-12f099c08167a7a51aeee623bc16dafd0841271c.tar.gz u-boot-imx-12f099c08167a7a51aeee623bc16dafd0841271c.tar.bz2 |
AVR32: Use initdram() instead of board_init_memories()
Conform to the "standard" interface and use initdram() instead of
board_init_memories() on AVR32. This enables us to get rid of the
sdram_size member of the global_data struct as well.
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-avr32/global_data.h | 1 | ||||
-rw-r--r-- | include/asm-avr32/initcalls.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/include/asm-avr32/global_data.h b/include/asm-avr32/global_data.h index 7c45b36..681c514 100644 --- a/include/asm-avr32/global_data.h +++ b/include/asm-avr32/global_data.h @@ -36,7 +36,6 @@ typedef struct global_data { bd_t *bd; unsigned long flags; unsigned long baudrate; - unsigned long sdram_size; unsigned long stack_end; /* highest stack address */ unsigned long have_console; /* serial_init() was called */ unsigned long reloc_off; /* Relocation Offset */ diff --git a/include/asm-avr32/initcalls.h b/include/asm-avr32/initcalls.h index 7ba25cd..583e5dc 100644 --- a/include/asm-avr32/initcalls.h +++ b/include/asm-avr32/initcalls.h @@ -26,8 +26,6 @@ extern int cpu_init(void); extern int timer_init(void); -extern void board_init_memories(void); -extern void board_init_pio(void); extern void board_init_info(void); #endif /* __ASM_AVR32_INITCALLS_H__ */ |