1 From 5e4f25d1f43991324794657655bbbc43983522a2 Mon Sep 17 00:00:00 2001
2 From: Arjan van de Ven <arjan@infradead.org>
3 Date: Wed, 10 Sep 2008 08:25:34 -0700
4 Subject: [PATCH] fastboot: fix blackfin breakage due to vmlinux.lds change
6 As reported by Mike Frysinger, the vmlinux.lds changes should
7 have used VMLINUX_SYMBOL()...
9 Reported-by: Mike Frysinger <vapier.adi@gmail.com>
10 Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
11 Acked-by: Bryan Wu <cooloney@kernel.org>
12 Signed-off-by: Ingo Molnar <mingo@elte.hu>
14 include/asm-generic/vmlinux.lds.h | 6 +++---
15 1 files changed, 3 insertions(+), 3 deletions(-)
17 diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h
18 index b9be858..ccabc4e 100644
19 --- a/include/asm-generic/vmlinux.lds.h
20 +++ b/include/asm-generic/vmlinux.lds.h
23 *(.initcallrootfs.init) \
25 - __async_initcall_start = .; \
26 + VMLINUX_SYMBOL(__async_initcall_start) = .; \
28 - __async_initcall_end = .; \
29 + VMLINUX_SYMBOL(__async_initcall_end) = .; \
31 - __device_initcall_end = .; \
32 + VMLINUX_SYMBOL(__device_initcall_end) = .; \