diff options
author | Rob Herring <robh@kernel.org> | 2014-03-24 17:11:54 -0400 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2014-05-20 15:24:41 -0400 |
commit | 9a721c41113a50ccbe184d67a5e551feb99e36a9 (patch) | |
tree | fb1aa591be0b69130514f1f0289f0f7f57372a9a /include/asm-generic | |
parent | 735e0da7fc55a0456476f6b40f85024f68f87092 (diff) |
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.h | 4 |
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 @@ | |||
179 | 179 | ||
180 | #ifdef CONFIG_SMP | 180 | #ifdef CONFIG_SMP |
181 | #define CPU_METHOD_OF_TABLES() . = ALIGN(8); \ | 181 | #define CPU_METHOD_OF_TABLES() . = ALIGN(8); \ |
182 | VMLINUX_SYMBOL(__cpu_method_of_table_begin) = .; \ | 182 | VMLINUX_SYMBOL(__cpu_method_of_table) = .; \ |
183 | *(__cpu_method_of_table) \ | 183 | *(__cpu_method_of_table) \ |
184 | VMLINUX_SYMBOL(__cpu_method_of_table_end) = .; | 184 | *(__cpu_method_of_table_end) |
185 | #else | 185 | #else |
186 | #define CPU_METHOD_OF_TABLES() | 186 | #define CPU_METHOD_OF_TABLES() |
187 | #endif | 187 | #endif |