diff options
author | Borislav Petkov <[email protected]> | 2016-02-03 12:33:34 +0100 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2016-02-09 11:41:16 +0100 |
commit | a58017c62b5fa23e532b731e70a63ded54cc2c02 (patch) | |
tree | 37bd5c915f5f7c2410b6ab9cfe673d4abb8f56a0 | |
parent | b7f500aedd4551a9bf29c617804c13f0ff18c879 (diff) |
x86/microcode/AMD: Drop redundant printk prefix
It is supplied by pr_fmt already.
Tested-by: Thomas Voegtle <[email protected]>
Signed-off-by: Borislav Petkov <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | arch/x86/kernel/cpu/microcode/amd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/kernel/cpu/microcode/amd.c b/arch/x86/kernel/cpu/microcode/amd.c index 5b63e2f669b0..9f5ccef33fba 100644 --- a/arch/x86/kernel/cpu/microcode/amd.c +++ b/arch/x86/kernel/cpu/microcode/amd.c @@ -469,8 +469,7 @@ void reload_ucode_amd(void) if (mc && rev < mc->hdr.patch_id) { if (!__apply_microcode_amd(mc)) { ucode_new_rev = mc->hdr.patch_id; - pr_info("microcode: reload patch_level=0x%08x\n", - ucode_new_rev); + pr_info("reload patch_level=0x%08x\n", ucode_new_rev); } } } |