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 /arch/arm/include/asm/omap_common.h | |
| parent | fda06812a068f916f64d9d1b3d1730e8213195b3 (diff) | |
| download | olio-uboot-2014.01-4a0eb75752167bef51993307a10677295cef315b.tar.xz olio-uboot-2014.01-4a0eb75752167bef51993307a10677295cef315b.zip | |
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 'arch/arm/include/asm/omap_common.h')
| -rw-r--r-- | arch/arm/include/asm/omap_common.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/arch/arm/include/asm/omap_common.h b/arch/arm/include/asm/omap_common.h index eebc9c7cb..ee7b188d3 100644 --- a/arch/arm/include/asm/omap_common.h +++ b/arch/arm/include/asm/omap_common.h @@ -25,6 +25,8 @@  #ifndef	_OMAP_COMMON_H_  #define	_OMAP_COMMON_H_ +#ifndef __ASSEMBLY__ +  #include <common.h>  #define NUM_SYS_CLKS	8 @@ -558,6 +560,7 @@ static inline u32 omap_revision(void)  	extern u32 *const omap_si_rev;  	return *omap_si_rev;  } +#endif  /*   * silicon revisions. |