aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/microcode.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-09-14 08:50:26 -0400
committerIngo Molnar <mingo@elte.hu>2008-09-14 08:53:00 -0400
commita1c75cc5018f17ff6d80ce45a13435b1536f76db (patch)
tree2b6e394379fe2035f26c4853b4cd462019b9e0a4 /arch/x86/kernel/microcode.c
parenta0a29b62a9cac6b7d83b7514679f2ed8d33d4372 (diff)
x86, microcode rework, v2, fix
based on patch from Dmitry Adamushko. - add missing vfree() - update debug printks Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/microcode.c')
-rw-r--r--arch/x86/kernel/microcode.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/kernel/microcode.c b/arch/x86/kernel/microcode.c
index 902dada2eb6d..0c2634f4fd7c 100644
--- a/arch/x86/kernel/microcode.c
+++ b/arch/x86/kernel/microcode.c
@@ -70,8 +70,6 @@
70 * Fix sigmatch() macro to handle old CPUs with pf == 0. 70 * Fix sigmatch() macro to handle old CPUs with pf == 0.
71 * Thanks to Stuart Swales for pointing out this bug. 71 * Thanks to Stuart Swales for pointing out this bug.
72 */ 72 */
73
74/* #define DEBUG pr_debug */
75#include <linux/capability.h> 73#include <linux/capability.h>
76#include <linux/kernel.h> 74#include <linux/kernel.h>
77#include <linux/init.h> 75#include <linux/init.h>
@@ -396,7 +394,7 @@ static int mc_sysdev_resume(struct sys_device *dev)
396 394
397 if (!cpu_online(cpu)) 395 if (!cpu_online(cpu))
398 return 0; 396 return 0;
399 pr_debug("microcode: CPU%d resumed\n", cpu); 397
400 /* only CPU 0 will apply ucode here */ 398 /* only CPU 0 will apply ucode here */
401 microcode_update_cpu(0); 399 microcode_update_cpu(0);
402 return 0; 400 return 0;