Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 307591
b: refs/heads/master
c: b2d6aba
h: refs/heads/master
i:
  307589: e8d3c96
  307587: 7860d17
  307583: 08677e7
v: v3
  • Loading branch information
Jan Beulich authored and Ingo Molnar committed May 7, 2012
1 parent 92131a2 commit 662dd3e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 396e2c6fed4ff13b53ce0e573105531cf53b0cad
refs/heads/master: b2d6aba9657c7e3d027dd43ac7d7c405e0079d46
7 changes: 6 additions & 1 deletion trunk/arch/x86/kernel/hpet.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,18 @@ static int hpet_verbose;

static int __init hpet_setup(char *str)
{
if (str) {
while (str) {
char *next = strchr(str, ',');

if (next)
*next++ = 0;
if (!strncmp("disable", str, 7))
boot_hpet_disable = 1;
if (!strncmp("force", str, 5))
hpet_force_user = 1;
if (!strncmp("verbose", str, 7))
hpet_verbose = 1;
str = next;
}
return 1;
}
Expand Down

0 comments on commit 662dd3e

Please sign in to comment.