diff options
author | Borislav Petkov <borislav.petkov@amd.com> | 2011-01-05 12:04:11 -0500 |
---|---|---|
committer | Borislav Petkov <borislav.petkov@amd.com> | 2011-02-09 10:05:35 -0500 |
commit | 05ff02e4c0686051fcb074aec92df03f2c184fd1 (patch) | |
tree | 2c964fb48f19508d3228cc693c18f5e3b31aee44 /arch/x86/kernel/microcode_amd.c | |
parent | 7cc27349cbfec271eecec9488b4bf3f3fadb2ce4 (diff) |
x86, microcode, AMD: Remove unneeded memset call
collect_cpu_info_amd() clears its csig arg but this is done in the
microcode_core's collect_cpu_info() by clearing the embedding struct
ucode_cpu_info. Drop it.
Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
Acked-by: Andreas Herrmann <Andreas.Herrmann3@amd.com>
Diffstat (limited to 'arch/x86/kernel/microcode_amd.c')
-rw-r--r-- | arch/x86/kernel/microcode_amd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/kernel/microcode_amd.c b/arch/x86/kernel/microcode_amd.c index 8b58fc13e37e..274fa4063c7a 100644 --- a/arch/x86/kernel/microcode_amd.c +++ b/arch/x86/kernel/microcode_amd.c | |||
@@ -77,7 +77,6 @@ static int collect_cpu_info_amd(int cpu, struct cpu_signature *csig) | |||
77 | struct cpuinfo_x86 *c = &cpu_data(cpu); | 77 | struct cpuinfo_x86 *c = &cpu_data(cpu); |
78 | u32 dummy; | 78 | u32 dummy; |
79 | 79 | ||
80 | memset(csig, 0, sizeof(*csig)); | ||
81 | if (c->x86_vendor != X86_VENDOR_AMD || c->x86 < 0x10) { | 80 | if (c->x86_vendor != X86_VENDOR_AMD || c->x86 < 0x10) { |
82 | pr_warning("microcode: CPU%d: AMD CPU family 0x%x not " | 81 | pr_warning("microcode: CPU%d: AMD CPU family 0x%x not " |
83 | "supported\n", cpu, c->x86); | 82 | "supported\n", cpu, c->x86); |