diff options
| -rw-r--r-- | arch/arm/cpu/armv7/mx5/soc.c | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/arch/arm/cpu/armv7/mx5/soc.c b/arch/arm/cpu/armv7/mx5/soc.c index 263658aa4..3d50a5d8e 100644 --- a/arch/arm/cpu/armv7/mx5/soc.c +++ b/arch/arm/cpu/armv7/mx5/soc.c @@ -72,6 +72,13 @@ u32 get_cpu_rev(void)  	return system_rev;  } +#ifdef CONFIG_REVISION_TAG +u32 __weak get_board_rev(void) +{ +	return get_cpu_rev(); +} +#endif +  #ifndef CONFIG_SYS_DCACHE_OFF  void enable_caches(void)  { |