From ff849b946a9f8104a3b5346b2fd49470370988b1 Mon Sep 17 00:00:00 2001 From: Tom Rini <trini@kernel.crashing.org> Date: Sun, 14 Sep 2003 18:21:47 -0700 Subject: [PATCH] PPC32: Fix another incorrect asm statement. From Scott Anderson <scott_anderson@mvista.com>. --- arch/ppc/boot/common/crt0.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/ppc/boot/common/crt0.S b/arch/ppc/boot/common/crt0.S index ab19f3dd5fe3..4d31b824bbd1 100644 --- a/arch/ppc/boot/common/crt0.S +++ b/arch/ppc/boot/common/crt0.S @@ -70,7 +70,7 @@ __start: ## Set up the stack lis r9,_start@h # r9 = &_start (text section entry) - addi r9,r9,_start@l + ori r9,r9,_start@l subi r1,r9,64 # Start the stack 64 bytes below _start clrrwi r1,r1,4 # Make sure it is aligned on 16 bytes. li r0,0 -- 2.30.9