Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 108171
b: refs/heads/master
c: 48d97cb
h: refs/heads/master
i:
  108169: eced5cc
  108167: 3659f96
v: v3
  • Loading branch information
Rene Herman authored and Ingo Molnar committed Aug 11, 2008
1 parent 8281b91 commit 53bf78f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 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: b0fbaa6b5976962434349849673b9ff63631b6d4
refs/heads/master: 48d97cb65e62a5f1122ac2cf1149800d4f4693e8
10 changes: 7 additions & 3 deletions trunk/arch/x86/kernel/apic_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -1720,12 +1720,16 @@ static int __init parse_lapic_timer_c2_ok(char *arg)
}
early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);

static int __init apic_set_verbosity(char *str)
static int __init apic_set_verbosity(char *arg)
{
if (strcmp("debug", str) == 0)
if (!arg)
return -EINVAL;

if (strcmp(arg, "debug") == 0)
apic_verbosity = APIC_DEBUG;
else if (strcmp("verbose", str) == 0)
else if (strcmp(arg, "verbose") == 0)
apic_verbosity = APIC_VERBOSE;

return 0;
}
early_param("apic", apic_set_verbosity);
Expand Down

0 comments on commit 53bf78f

Please sign in to comment.