Skip to content

Commit

Permalink
ARM: OMAP4: sleep: build OMAP4 specific functions only for OMAP4
Browse files Browse the repository at this point in the history
CPU sleep and resume functions for Cortex-A9 based OMAP4 and
Cortex-A15 based OMAP5 are different. Hence, even though we reuse
most of the remaining file as part of OMAP4/5 consolidation, build
OMAP4 specific sleep/resume operations only for OMAP4. SCU is not used
OMAP5.

This fixes the following build failure with OMAP5 only build:
arch/arm/mach-omap2/built-in.o: In function `scu_gp_set':
arch/arm/mach-omap2/sleep44xx.S:132: undefined reference to `scu_power_mode'
arch/arm/mach-omap2/built-in.o: In function `scu_gp_clear':
arch/arm/mach-omap2/sleep44xx.S:229: undefined reference to `scu_power_mode'

Reported-by: Pekon Gupta <[email protected]>
Reported-by: Vincent Stehlé <[email protected]>
Acked-by: Santosh Shilimkar <[email protected]>
Signed-off-by: Nishanth Menon <[email protected]>
Signed-off-by: Tony Lindgren <[email protected]>
  • Loading branch information
nmenon authored and tmlind committed Jul 4, 2013
1 parent 37bd6ca commit b46355a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion arch/arm/mach-omap2/sleep44xx.S
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ ppa_zero_params:
ppa_por_params:
.word 1, 0

#ifdef CONFIG_ARCH_OMAP4

/*
* =============================
* == CPU suspend finisher ==
Expand Down Expand Up @@ -326,7 +328,9 @@ skip_l2en:

b cpu_resume @ Jump to generic resume
ENDPROC(omap4_cpu_resume)
#endif
#endif /* CONFIG_ARCH_OMAP4 */

#endif /* defined(CONFIG_SMP) && defined(CONFIG_PM) */

#ifndef CONFIG_OMAP4_ERRATA_I688
ENTRY(omap_bus_sync)
Expand Down

0 comments on commit b46355a

Please sign in to comment.