diff options
author | Tony Lindgren | 2013-11-18 22:56:48 +0100 |
---|---|---|
committer | Tony Lindgren | 2013-11-19 00:33:16 +0100 |
commit | 39cec6222924dfbb5d7f5d2b2f718af34e872add (patch) | |
tree | b274d6684e1e1f0029dee2f6247a143ee3716943 /arch/arm/mach-omap2/omap-secure.h | |
parent | gpio: twl4030: Fix passing of pdata in the device tree case (diff) | |
download | kernel-qcow2-linux-39cec6222924dfbb5d7f5d2b2f718af34e872add.tar.gz kernel-qcow2-linux-39cec6222924dfbb5d7f5d2b2f718af34e872add.tar.xz kernel-qcow2-linux-39cec6222924dfbb5d7f5d2b2f718af34e872add.zip |
ARM: OMAP2+: Fix undefined reference to set_cntfreq
If CONFIG_SOC_HAS_REALTIME_COUNTER is not selected for omap5
or dra7xx, we can get the following error:
arch/arm/mach-omap2/built-in.o: In function `omap4_secondary_init':
:(.text+0x7ab0): undefined reference to `set_cntfreq'
Fix the issue by not trying to initalize the realtime counter
unles CONFIG_SOC_HAS_REALTIME_COUNTER is selected.
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/omap-secure.h')
-rw-r--r-- | arch/arm/mach-omap2/omap-secure.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/omap-secure.h b/arch/arm/mach-omap2/omap-secure.h index 8cc7d331437d..3e97c6c8ecf1 100644 --- a/arch/arm/mach-omap2/omap-secure.h +++ b/arch/arm/mach-omap2/omap-secure.h @@ -76,6 +76,13 @@ static inline void omap_barrier_reserve_memblock(void) { } #endif +#ifdef CONFIG_SOC_HAS_REALTIME_COUNTER void set_cntfreq(void); +#else +static inline void set_cntfreq(void) +{ +} +#endif + #endif /* __ASSEMBLER__ */ #endif /* OMAP_ARCH_OMAP_SECURE_H */ |