Skip to content

Commit

Permalink
[PATCH] x86_64: Add acpi_skip_timer_override option
Browse files Browse the repository at this point in the history
Add acpi_skip_timer_override option.  It was missing previously.

Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Andi Kleen authored and Linus Torvalds committed Apr 16, 2005
1 parent 0a65800 commit 2299924
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions arch/x86_64/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,10 @@ static __init void parse_cmdline_early (char ** cmdline_p)
else if (!memcmp(from, "acpi=strict", 11)) {
acpi_strict = 1;
}
#ifdef CONFIG_X86_IO_APIC
else if (!memcmp(from, "acpi_skip_timer_override", 24))
acpi_skip_timer_override = 1;
#endif
#endif

if (!memcmp(from, "nolapic", 7) ||
Expand Down

0 comments on commit 2299924

Please sign in to comment.