diff options
author | SRICHARAN R <r.sricharan@ti.com> | 2013-04-24 00:41:24 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-05-10 08:25:56 -0400 |
commit | 4a0eb75752167bef51993307a10677295cef315b (patch) | |
tree | e1bb753ed7ebfe79ba34c373a2164e42faaa4cdd /include | |
parent | fda06812a068f916f64d9d1b3d1730e8213195b3 (diff) | |
download | u-boot-imx-4a0eb75752167bef51993307a10677295cef315b.zip u-boot-imx-4a0eb75752167bef51993307a10677295cef315b.tar.gz u-boot-imx-4a0eb75752167bef51993307a10677295cef315b.tar.bz2 |
ARM: OMAP: Cleanup boot parameters usage
The boot parameters are read from individual variables
assigned for each of them. This been corrected and now
they are stored as a part of the global data 'gd'
structure. So read them from 'gd' instead.
Signed-off-by: Sricharan R <r.sricharan@ti.com>
[trini: Add igep0033 hunk]
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/am335x_evm.h | 1 | ||||
-rw-r--r-- | include/configs/igep0033.h | 1 | ||||
-rw-r--r-- | include/configs/pcm051.h | 1 | ||||
-rw-r--r-- | include/configs/ti814x_evm.h | 1 | ||||
-rw-r--r-- | include/spl.h | 1 |
5 files changed, 4 insertions, 1 deletions
diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index 5739422..941054d 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -17,6 +17,7 @@ #define __CONFIG_AM335X_EVM_H #define CONFIG_AM33XX +#define CONFIG_OMAP #include <asm/arch/omap.h> diff --git a/include/configs/igep0033.h b/include/configs/igep0033.h index 50eafdf..14063a8 100644 --- a/include/configs/igep0033.h +++ b/include/configs/igep0033.h @@ -15,6 +15,7 @@ #define __CONFIG_IGEP0033_H #define CONFIG_AM33XX +#define CONFIG_OMAP #include <asm/arch/omap.h> diff --git a/include/configs/pcm051.h b/include/configs/pcm051.h index 2e3f08b..cc8d317 100644 --- a/include/configs/pcm051.h +++ b/include/configs/pcm051.h @@ -20,6 +20,7 @@ #define __CONFIG_PCM051_H #define CONFIG_AM33XX +#define CONFIG_OMAP #include <asm/arch/omap.h> diff --git a/include/configs/ti814x_evm.h b/include/configs/ti814x_evm.h index e646bd7..6c423df 100644 --- a/include/configs/ti814x_evm.h +++ b/include/configs/ti814x_evm.h @@ -19,6 +19,7 @@ #define CONFIG_TI81XX #define CONFIG_TI814X #define CONFIG_SYS_NO_FLASH +#define CONFIG_OMAP #include <asm/arch/omap.h> diff --git a/include/spl.h b/include/spl.h index b40be80..4bc1dd1 100644 --- a/include/spl.h +++ b/include/spl.h @@ -44,7 +44,6 @@ struct spl_image_info { #define SPL_COPY_PAYLOAD_ONLY 1 extern struct spl_image_info spl_image; -extern u32 *boot_params_ptr; /* SPL common functions */ void preloader_console_init(void); |