[PATCH] fastboot: fix blackfin breakage due to vmlinux.lds change

From: Arjan van de Ven
Date: Wed Sep 10 2008 - 11:22:26 EST


As reported by Mike Frysinger, the vmlinux.lds changes should
have used VMLINUX_SYMBOL()...

Reported-by: Mike Frysinger <vapier.adi@xxxxxxxxx>
Signed-off-by: Arjan van de Ven <arjan@xxxxxxxxxxxxxxx>
---
include/asm-generic/vmlinux.lds.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h
index 020c641..f32418f 100644
--- a/include/asm-generic/vmlinux.lds.h
+++ b/include/asm-generic/vmlinux.lds.h
@@ -373,11 +373,11 @@
*(.initcall5s.init) \
*(.initcallrootfs.init) \
*(.initcall6s.init) \
- __async_initcall_start = .; \
+ VMLINUX_SYMBOL(__async_initcall_start) = .; \
*(.initcall6a.init) \
- __async_initcall_end = .; \
+ VMLINUX_SYMBOL(__async_initcall_end) = .; \
*(.initcall6.init) \
- __device_initcall_end = .; \
+ VMLINUX_SYMBOL(__device_initcall_end) = .; \
*(.initcall7.init) \
*(.initcall7s.init)

--
1.5.5.1




--
Arjan van de Ven Intel Open Source Technology Centre
For development, discussion and tips for power savings,
visit http://www.lesswatts.org
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/