Messages in this thread Patch in this message |  | | Date | Thu, 15 May 2003 11:29:14 +0200 | From | mikpe@csd ... | Subject | Re: 2.5.69-mm5: CONFIG_ACPI_SLEEP compile error |
| |
Adrian Bunk writes: > It seems the following problem comes from Linus' tree: > > <-- snip --> > > ... > ... --end-group -o .tmp_vmlinux1 > arch/i386/kernel/built-in.o(.data+0x1fae): In function `do_suspend_lowlevel': > : undefined reference to `saved_context_esp' > arch/i386/kernel/built-in.o(.data+0x1fb3): In function `do_suspend_lowlevel': > : undefined reference to `saved_context_eax' > arch/i386/kernel/built-in.o(.data+0x1fb9): In function `do_suspend_lowlevel': > : undefined reference to `saved_context_ebx'
My fault, sorry. When I grepped for these variables I failed to notice the references in acpi/wakeup.S. This patch fixes this.
/Mikael
--- linux-2.5.69-bk9/arch/i386/kernel/suspend_asm.S.~1~ 2003-05-15 11:07:04.000000000 +0200 +++ linux-2.5.69-bk9/arch/i386/kernel/suspend_asm.S 2003-05-15 11:09:29.000000000 +0200 @@ -7,6 +7,12 @@ #include <asm/page.h> .data + .align 4 + .globl saved_context_eax, saved_context_ebx + .globl saved_context_ecx, saved_context_edx + .globl saved_context_esp, saved_context_ebp + .globl saved_context_esi, saved_context_edi + .globl saved_context_eflags saved_context_eax: .long 0 saved_context_ebx: - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |