Skip to content
Snippets Groups Projects
Commit 2e6f40de authored by Johannes Berg's avatar Johannes Berg Committed by Paul Mackerras
Browse files

[POWERPC] Make altivec code in swsusp_32.S depend on CONFIG_ALTIVEC


This makes the altivec code in swsusp_32.S depend on CONFIG_ALTIVEC to
avoid build failures for systems that don't have altivec. I'm not sure
whether the code will actually work for other systems, but it was merged
for just ppc32 rather than powermac a very long time ago.

Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 67b60518
No related branches found
No related tags found
No related merge requests found
...@@ -133,10 +133,12 @@ _GLOBAL(swsusp_arch_suspend) ...@@ -133,10 +133,12 @@ _GLOBAL(swsusp_arch_suspend)
/* Resume code */ /* Resume code */
_GLOBAL(swsusp_arch_resume) _GLOBAL(swsusp_arch_resume)
#ifdef CONFIG_ALTIVEC
/* Stop pending alitvec streams and memory accesses */ /* Stop pending alitvec streams and memory accesses */
BEGIN_FTR_SECTION BEGIN_FTR_SECTION
DSSALL DSSALL
END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC) END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
#endif
sync sync
/* Disable MSR:DR to make sure we don't take a TLB or /* Disable MSR:DR to make sure we don't take a TLB or
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment