Skip to content

Commit

Permalink
[PATCH] i386: Avoid boot warning with apic=debug
Browse files Browse the repository at this point in the history
There are two consumers of apic=: the apic debug level and the low
level generic architecture code. early_param would warn when the
low level code rejected "debug". Avoid this.

Signed-off-by: Andi Kleen <ak@suse.de>
  • Loading branch information
Andi Kleen authored and Andi Kleen committed Dec 7, 2006
1 parent 538f188 commit 9a8cb62
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion arch/i386/mach-generic/probe.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ static int __init parse_apic(char *arg)
return 0;
}
}
return -ENOENT;

/* Parsed again by __setup for debug/verbose */
return 0;
}
early_param("apic", parse_apic);

Expand Down

0 comments on commit 9a8cb62

Please sign in to comment.