Commit 05a717fb authored by Mike Frysinger's avatar Mike Frysinger Committed by Bryan Wu

Blackfin arch: do not include init sections in the kernel lock down as it gets released afterwards

Signed-off-by: default avatarMike Frysinger <vapier.adi@gmail.com>
Signed-off-by: default avatarBryan Wu <cooloney@kernel.org>
parent 38316382
...@@ -163,7 +163,7 @@ static struct cplb_desc cplb_data[] = { ...@@ -163,7 +163,7 @@ static struct cplb_desc cplb_data[] = {
static bool __init lock_kernel_check(u32 start, u32 end) 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; return false;
/* This cplb block overlapped with kernel area. */ /* This cplb block overlapped with kernel area. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment