diff options
author | Wenyou Yang <wenyou.yang@atmel.com> | 2017-09-14 11:07:42 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-14 16:02:47 -0400 |
commit | e61ed48ff5d530e3c8adf435c57cde9936295f5e (patch) | |
tree | bee232632720f0b7f25473aeffa51df3d47dfc34 /include/configs/at91sam9n12ek.h | |
parent | 22693376144cbbe2547f60a6aa48fb56cf8247d1 (diff) | |
download | u-boot-e61ed48ff5d530e3c8adf435c57cde9936295f5e.tar.gz |
ARM: at91: Remove hardware.h included in configs
As said in READRE.kconfig, include/configs/*.h will be removed
after all options are switched to Kconfig. As the first step,
remove the follow line from include/configs/*.h.
#include <asm/hardware.h>
Signed-off-by: Wenyou Yang <wenyou.yang@microchip.com>
Diffstat (limited to 'include/configs/at91sam9n12ek.h')
-rw-r--r-- | include/configs/at91sam9n12ek.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/include/configs/at91sam9n12ek.h b/include/configs/at91sam9n12ek.h index 7d70d8892a..c9adcf9754 100644 --- a/include/configs/at91sam9n12ek.h +++ b/include/configs/at91sam9n12ek.h @@ -10,12 +10,6 @@ #ifndef __AT91SAM9N12_CONFIG_H_ #define __AT91SAM9N12_CONFIG_H_ -/* - * SoC must be defined first, before hardware.h is included. - * In this case SoC is defined in boards.cfg. - */ -#include <asm/hardware.h> - #define CONFIG_SYS_TEXT_BASE 0x26f00000 /* ARM asynchronous clock */ @@ -55,7 +49,7 @@ * that address while providing maximum stack area below. */ # define CONFIG_SYS_INIT_SP_ADDR \ - (ATMEL_BASE_SRAM + 16 * 1024 - GENERATED_GBL_DATA_SIZE) + (0x00300000 + 16 * 1024 - GENERATED_GBL_DATA_SIZE) /* DataFlash */ #ifdef CONFIG_CMD_SF |