diff options
author | Thomas Renninger <trenn@suse.de> | 2013-11-12 11:39:43 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-11-12 16:03:49 -0500 |
commit | 11f918d3e2d3861b6931e97b3aa778e4984935aa (patch) | |
tree | 97d13164321de81f3a009d9e81880b8744a56bd6 /arch | |
parent | 5f01c98859073cb512b01d4fad74b5f4e047be0b (diff) |
x86/microcode/amd: Tone down printk(), don't treat a missing firmware file as an error
Do it the same way as done in microcode_intel.c: use pr_debug()
for missing firmware files.
There seem to be CPUs out there for which no microcode update
has been submitted to kernel-firmware repo yet resulting in
scary sounding error messages in dmesg:
microcode: failed to load file amd-ucode/microcode_amd_fam16h.bin
Signed-off-by: Thomas Renninger <trenn@suse.de>
Acked-by: Borislav Petkov <bp@suse.de>
Cc: <stable@kernel.org>
Link: http://lkml.kernel.org/r/1384274383-43510-1-git-send-email-trenn@suse.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/microcode_amd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/microcode_amd.c b/arch/x86/kernel/microcode_amd.c index af99f71aeb7f..c3d4cc972eca 100644 --- a/arch/x86/kernel/microcode_amd.c +++ b/arch/x86/kernel/microcode_amd.c | |||
@@ -431,7 +431,7 @@ static enum ucode_state request_microcode_amd(int cpu, struct device *device, | |||
431 | snprintf(fw_name, sizeof(fw_name), "amd-ucode/microcode_amd_fam%.2xh.bin", c->x86); | 431 | snprintf(fw_name, sizeof(fw_name), "amd-ucode/microcode_amd_fam%.2xh.bin", c->x86); |
432 | 432 | ||
433 | if (request_firmware(&fw, (const char *)fw_name, device)) { | 433 | if (request_firmware(&fw, (const char *)fw_name, device)) { |
434 | pr_err("failed to load file %s\n", fw_name); | 434 | pr_debug("failed to load file %s\n", fw_name); |
435 | goto out; | 435 | goto out; |
436 | } | 436 | } |
437 | 437 | ||