aboutsummaryrefslogtreecommitdiffstats
path: root/usr/initramfs_data.S
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-08-19 07:34:47 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-08-22 23:21:44 +0900
commitc4df32c80d04987023844c1fb13734a872c8f2e2 (patch)
treeb0fe7cfe2f2a16fcad02a03a19c8b190f47f90e9 /usr/initramfs_data.S
parentCoccinelle: remove pci_alloc_consistent semantic to detect in zalloc-simple.cocci (diff)
downloadlinux-dev-c4df32c80d04987023844c1fb13734a872c8f2e2.tar.xz
linux-dev-c4df32c80d04987023844c1fb13734a872c8f2e2.zip
export.h: remove VMLINUX_SYMBOL() and VMLINUX_SYMBOL_STR()
With the special case handling for Blackfin and Metag was removed by commit 94e58e0ac312 ("export.h: remove code for prefixing symbols with underscore"), VMLINUX_SYMBOL() is no-op. Replace the remaining usages, then remove the definition of VMLINUX_SYMBOL() and VMLINUX_SYMBOL_STR(). Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'usr/initramfs_data.S')
-rw-r--r--usr/initramfs_data.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/initramfs_data.S b/usr/initramfs_data.S
index b28da799f6a6..d07648f05bbf 100644
--- a/usr/initramfs_data.S
+++ b/usr/initramfs_data.S
@@ -30,8 +30,8 @@ __irf_start:
.incbin __stringify(INITRAMFS_IMAGE)
__irf_end:
.section .init.ramfs.info,"a"
-.globl VMLINUX_SYMBOL(__initramfs_size)
-VMLINUX_SYMBOL(__initramfs_size):
+.globl __initramfs_size
+__initramfs_size:
#ifdef CONFIG_64BIT
.quad __irf_end - __irf_start
#else