diff options
Diffstat (limited to 'arch/arm/include/asm/omap_common.h')
| -rw-r--r-- | arch/arm/include/asm/omap_common.h | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/arch/arm/include/asm/omap_common.h b/arch/arm/include/asm/omap_common.h index 6f25948e2..2f35c185d 100644 --- a/arch/arm/include/asm/omap_common.h +++ b/arch/arm/include/asm/omap_common.h @@ -108,6 +108,12 @@ void spl_ymodem_load_image(void);  void spl_board_init(void);  #endif +static inline u32 omap_revision(void) +{ +	extern u32 *const omap_si_rev; +	return *omap_si_rev; +} +  /*   * silicon revisions.   * Moving this to common, so that most of code can be moved to common, |