diff options
author | Simon Glass <sjg@chromium.org> | 2014-10-29 13:08:55 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-21 08:08:07 +0100 |
commit | 5e8a749c2895377753b8f773b12f6d4090466a33 (patch) | |
tree | dd4721e9bb19e40e26280de4094b8636bc71f16e | |
parent | 4d70b34d7f721d8b1d4d628e68c3a44ab7a10dff (diff) | |
download | u-boot-imx-5e8a749c2895377753b8f773b12f6d4090466a33.zip u-boot-imx-5e8a749c2895377753b8f773b12f6d4090466a33.tar.gz u-boot-imx-5e8a749c2895377753b8f773b12f6d4090466a33.tar.bz2 |
dm: at91: Correct text base for snapper9260
The value should be 0x21f00000. Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | include/configs/snapper9260.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/snapper9260.h b/include/configs/snapper9260.h index 1ebee71..6909e99 100644 --- a/include/configs/snapper9260.h +++ b/include/configs/snapper9260.h @@ -15,7 +15,7 @@ #include <asm/hardware.h> #include <linux/sizes.h> -#define CONFIG_SYS_TEXT_BASE 0x20000000 +#define CONFIG_SYS_TEXT_BASE 0x21f00000 /* ARM asynchronous clock */ #define CONFIG_SYS_AT91_MAIN_CLOCK 18432000 /* External Crystal, in Hz */ |