summaryrefslogtreecommitdiffstats
path: root/include/asm-generic
diff options
context:
space:
mode:
authorRob Herring2014-03-24 22:11:54 +0100
committerRob Herring2014-05-20 21:24:41 +0200
commit9a721c41113a50ccbe184d67a5e551feb99e36a9 (patch)
treefb1aa591be0b69130514f1f0289f0f7f57372a9a /include/asm-generic
parentirqchip: align irqchip OF match table section naming (diff)
downloadkernel-qcow2-linux-9a721c41113a50ccbe184d67a5e551feb99e36a9.tar.gz
kernel-qcow2-linux-9a721c41113a50ccbe184d67a5e551feb99e36a9.tar.xz
kernel-qcow2-linux-9a721c41113a50ccbe184d67a5e551feb99e36a9.zip
ARM: align cpu_method_of_table naming
The cpu_method_of_table is the oddball of the various OF linker sections. In preparation to have common linker section definitions, align the cpu_method_of_table with the other definitions for the naming and ending with a blank struct. Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Rob Herring <robh@kernel.org> Cc: Russell King <linux@arm.linux.org.uk>
Diffstat (limited to 'include/asm-generic')
-rw-r--r--include/asm-generic/vmlinux.lds.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h
index b1c6f9d0c4ff..fe57c5f1bd1a 100644
--- a/include/asm-generic/vmlinux.lds.h
+++ b/include/asm-generic/vmlinux.lds.h
@@ -179,9 +179,9 @@
#ifdef CONFIG_SMP
#define CPU_METHOD_OF_TABLES() . = ALIGN(8); \
- VMLINUX_SYMBOL(__cpu_method_of_table_begin) = .; \
+ VMLINUX_SYMBOL(__cpu_method_of_table) = .; \
*(__cpu_method_of_table) \
- VMLINUX_SYMBOL(__cpu_method_of_table_end) = .;
+ *(__cpu_method_of_table_end)
#else
#define CPU_METHOD_OF_TABLES()
#endif