diff options
author | Mike Frysinger <vapier.adi@gmail.com> | 2008-11-18 09:48:22 (GMT) |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-11-18 09:48:22 (GMT) |
commit | 05a717fbc893c777165b00821b9dcde968a95bcc (patch) | |
tree | a1f616b75aca1d9bf9e850f66f189f23c71c6ac2 /arch/blackfin/kernel/cplb-nompu | |
parent | 383163826012d70da070bedd432a74bb8d915315 (diff) | |
download | linux-05a717fbc893c777165b00821b9dcde968a95bcc.tar.xz |
Blackfin arch: do not include init sections in the kernel lock down as it gets released afterwards
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin/kernel/cplb-nompu')
-rw-r--r-- | arch/blackfin/kernel/cplb-nompu/cplbinit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/kernel/cplb-nompu/cplbinit.c b/arch/blackfin/kernel/cplb-nompu/cplbinit.c index b0d6084..afef5c7 100644 --- a/arch/blackfin/kernel/cplb-nompu/cplbinit.c +++ b/arch/blackfin/kernel/cplb-nompu/cplbinit.c @@ -163,7 +163,7 @@ static struct cplb_desc cplb_data[] = { static bool __init lock_kernel_check(u32 start, u32 end) { - if (start >= (u32)_end || end <= (u32)_stext) + if (start >= (u32)__init_begin || end <= (u32)_stext) return false; /* This cplb block overlapped with kernel area. */ |