[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:
Andi Kleen 2007-02-13 13:26:25 +01:00 коммит произвёл Andi Kleen
Родитель 0a4599c894
Коммит 2ba1ff2b79
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;