From: Russell King Date: Mon, 19 Apr 2010 09:15:03 +0000 (+0100) Subject: ARM: fix build error in arch/arm/kernel/process.c X-Git-Tag: v2.6.34-rc6~4^2~6 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4260415f6a3b92c5c986398d96c314df37a4ccbf;p=pandora-kernel.git ARM: fix build error in arch/arm/kernel/process.c /tmp/ccJ3ssZW.s: Assembler messages: /tmp/ccJ3ssZW.s:1952: Error: can't resolve `.text' {.text section} - `.LFB1077' This is caused because: .section .data .section .text .section .text .previous does not return us to the .text section, but the .data section; this makes use of .previous dangerous if the ordering of previous sections is not known. Fix up the other users of .previous; .pushsection and .popsection are a safer pairing to use than .section and .previous. Signed-off-by: Russell King --- Reading git-diff-tree failed