diff options
author | Borislav Petkov <bp@suse.de> | 2016-07-04 13:05:51 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2016-07-08 05:30:58 -0400 |
commit | eb06158ee1457a27fcc981a37f23b50f19015a8a (patch) | |
tree | 437fec665ea88a47a99ea131c3d0e262a99692f9 | |
parent | 846c791bf7c6b7d9121708a1eb9ca2492b92a858 (diff) |
x86/microcode: Remove unused symbol exports
It is not a module anymore and those can be retracted.
No functionality change.
Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/20160704170551.GC7261@pd.tnic
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | arch/x86/kernel/cpu/microcode/core.c | 1 | ||||
-rw-r--r-- | arch/x86/kernel/cpu/microcode/intel_lib.c | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/arch/x86/kernel/cpu/microcode/core.c b/arch/x86/kernel/cpu/microcode/core.c index 9ae7fcac70ab..df04b2d033f6 100644 --- a/arch/x86/kernel/cpu/microcode/core.c +++ b/arch/x86/kernel/cpu/microcode/core.c | |||
@@ -60,7 +60,6 @@ static bool dis_ucode_ldr; | |||
60 | static DEFINE_MUTEX(microcode_mutex); | 60 | static DEFINE_MUTEX(microcode_mutex); |
61 | 61 | ||
62 | struct ucode_cpu_info ucode_cpu_info[NR_CPUS]; | 62 | struct ucode_cpu_info ucode_cpu_info[NR_CPUS]; |
63 | EXPORT_SYMBOL_GPL(ucode_cpu_info); | ||
64 | 63 | ||
65 | /* | 64 | /* |
66 | * Operations that are run on a target cpu: | 65 | * Operations that are run on a target cpu: |
diff --git a/arch/x86/kernel/cpu/microcode/intel_lib.c b/arch/x86/kernel/cpu/microcode/intel_lib.c index 2ce1a7dc45b7..406cb6c0d9dd 100644 --- a/arch/x86/kernel/cpu/microcode/intel_lib.c +++ b/arch/x86/kernel/cpu/microcode/intel_lib.c | |||
@@ -141,7 +141,6 @@ int microcode_sanity_check(void *mc, int print_err) | |||
141 | } | 141 | } |
142 | return 0; | 142 | return 0; |
143 | } | 143 | } |
144 | EXPORT_SYMBOL_GPL(microcode_sanity_check); | ||
145 | 144 | ||
146 | /* | 145 | /* |
147 | * Returns 1 if update has been found, 0 otherwise. | 146 | * Returns 1 if update has been found, 0 otherwise. |
@@ -183,4 +182,3 @@ int has_newer_microcode(void *mc, unsigned int csig, int cpf, int new_rev) | |||
183 | 182 | ||
184 | return find_matching_signature(mc, csig, cpf); | 183 | return find_matching_signature(mc, csig, cpf); |
185 | } | 184 | } |
186 | EXPORT_SYMBOL_GPL(has_newer_microcode); | ||