diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-08-18 18:34:47 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-08-22 10:21:44 -0400 |
commit | c4df32c80d04987023844c1fb13734a872c8f2e2 (patch) | |
tree | b0fe7cfe2f2a16fcad02a03a19c8b190f47f90e9 /certs | |
parent | 6fbd856950b41345ad5c893613efebdc0c356bc7 (diff) |
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 'certs')
-rw-r--r-- | certs/system_certificates.S | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/certs/system_certificates.S b/certs/system_certificates.S index 3918ff7235ed..8f29058adf93 100644 --- a/certs/system_certificates.S +++ b/certs/system_certificates.S | |||
@@ -5,8 +5,8 @@ | |||
5 | __INITRODATA | 5 | __INITRODATA |
6 | 6 | ||
7 | .align 8 | 7 | .align 8 |
8 | .globl VMLINUX_SYMBOL(system_certificate_list) | 8 | .globl system_certificate_list |
9 | VMLINUX_SYMBOL(system_certificate_list): | 9 | system_certificate_list: |
10 | __cert_list_start: | 10 | __cert_list_start: |
11 | #ifdef CONFIG_MODULE_SIG | 11 | #ifdef CONFIG_MODULE_SIG |
12 | .incbin "certs/signing_key.x509" | 12 | .incbin "certs/signing_key.x509" |
@@ -15,21 +15,21 @@ __cert_list_start: | |||
15 | __cert_list_end: | 15 | __cert_list_end: |
16 | 16 | ||
17 | #ifdef CONFIG_SYSTEM_EXTRA_CERTIFICATE | 17 | #ifdef CONFIG_SYSTEM_EXTRA_CERTIFICATE |
18 | .globl VMLINUX_SYMBOL(system_extra_cert) | 18 | .globl system_extra_cert |
19 | .size system_extra_cert, CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE | 19 | .size system_extra_cert, CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE |
20 | VMLINUX_SYMBOL(system_extra_cert): | 20 | system_extra_cert: |
21 | .fill CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE, 1, 0 | 21 | .fill CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE, 1, 0 |
22 | 22 | ||
23 | .align 4 | 23 | .align 4 |
24 | .globl VMLINUX_SYMBOL(system_extra_cert_used) | 24 | .globl system_extra_cert_used |
25 | VMLINUX_SYMBOL(system_extra_cert_used): | 25 | system_extra_cert_used: |
26 | .int 0 | 26 | .int 0 |
27 | 27 | ||
28 | #endif /* CONFIG_SYSTEM_EXTRA_CERTIFICATE */ | 28 | #endif /* CONFIG_SYSTEM_EXTRA_CERTIFICATE */ |
29 | 29 | ||
30 | .align 8 | 30 | .align 8 |
31 | .globl VMLINUX_SYMBOL(system_certificate_list_size) | 31 | .globl system_certificate_list_size |
32 | VMLINUX_SYMBOL(system_certificate_list_size): | 32 | system_certificate_list_size: |
33 | #ifdef CONFIG_64BIT | 33 | #ifdef CONFIG_64BIT |
34 | .quad __cert_list_end - __cert_list_start | 34 | .quad __cert_list_end - __cert_list_start |
35 | #else | 35 | #else |