]> git.baikalelectronics.ru Git - kernel.git/commit
[ARM] 4227/1: minor head.S fixups
authorNicolas Pitre <nico@cam.org>
Wed, 21 Feb 2007 14:58:13 +0000 (15:58 +0100)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Thu, 3 May 2007 20:03:48 +0000 (21:03 +0100)
commit4ad9bac1a09da6edec863470c3b83aa0d6778fb2
tree55160c4689c9e7b80e871d24acb4a1b4cc3a18d9
parent5aa3c91606ee6c402946faf538270e1acb384a81
[ARM] 4227/1: minor head.S fixups

Let's surround constructs like:

orr r3, r3, #(KERNEL_RAM_PADDR & 0x00f00000)

between .if .endif since (KERNEL_RAM_PADDR & 0x00f00000) is 0 in 99% of
all cases.

Also let's mask PHYS_OFFSET with 0x00f00000 instead of 0x00e00000.
Section mappings are really 1MB not 2MB and the 2MB groupping is
a higher level issue already much better enforced with

#if (PHYS_OFFSET & 0x001fffff)
#error "PHYS_OFFSET must be at an even 2MiB boundary!"
#endif

at the top of the file.

Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/kernel/head.S