mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-09-23 15:14:12 +00:00
[PATCH] i386: Fix warning in microcode.c
Fix bogus gcc warning linux/arch/i386/kernel/microcode.c:387: warning: ‘new_mc’ may be used uninitialized in this function Signed-off-by: Andi Kleen <ak@suse.de>
This commit is contained in:
@@ -384,7 +384,7 @@ static int do_microcode_update (void)
|
||||
{
|
||||
long cursor = 0;
|
||||
int error = 0;
|
||||
void *new_mc;
|
||||
void *new_mc = NULL;
|
||||
int cpu;
|
||||
cpumask_t old;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user