commit: http://blackfin.uclinux.org/git/?p=linux-kernel;a=commitdiff;h=02b96ffd8f2942dc489381997e8a3b1013322e15 branch: http://blackfin.uclinux.org/git/?p=linux-kernel;a=shortlog;h=refs/heads/trunk-next
My earlier commit (2c77fc99e43e02dbd) introduced a typo in the symbol for core b to start executing at. Fix said typo so the system boots. Signed-off-by: Mike Frysinger <[email protected]> --- arch/blackfin/mach-bf561/secondary.S | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/blackfin/mach-bf561/secondary.S b/arch/blackfin/mach-bf561/secondary.S index 9d83838..01e5408 100644 --- a/arch/blackfin/mach-bf561/secondary.S +++ b/arch/blackfin/mach-bf561/secondary.S @@ -108,8 +108,8 @@ ENTRY(_coreb_trampoline_start) /* EVT15 = _real_start */ - p1.l = _real_start; - p1.h = _real_start; + p1.l = _coreb_start; + p1.h = _coreb_start; [p5 + (EVT15 - COREMMR_BASE)] = p1; csync;
_______________________________________________ Linux-kernel-commits mailing list [email protected] https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits
