diff options
author | Milan Broz <mbroz@redhat.com> | 2008-08-15 20:11:28 -0400 |
---|---|---|
committer | Andi Kleen <ak@linux.intel.com> | 2008-08-18 02:38:36 -0400 |
commit | 613e5f3376e48bd48494cf780b79b97b057d49a7 (patch) | |
tree | 5461d3ffc2e2e92f2e77e43cdeaecf02a40cb7bc /drivers/acpi | |
parent | b09c3e3f1710b554348c98e78fbf4a661918779a (diff) |
ACPI: Fix now signed module parameter.
Signed-off-by: Milan Broz <mbroz@redhat.com>
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/processor_perflib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/processor_perflib.c b/drivers/acpi/processor_perflib.c index 80e32093e977..80c251ec6d2a 100644 --- a/drivers/acpi/processor_perflib.c +++ b/drivers/acpi/processor_perflib.c | |||
@@ -71,7 +71,7 @@ static DEFINE_MUTEX(performance_mutex); | |||
71 | * 1 -> ignore _PPC totally -> forced by user through boot param | 71 | * 1 -> ignore _PPC totally -> forced by user through boot param |
72 | */ | 72 | */ |
73 | static int ignore_ppc = -1; | 73 | static int ignore_ppc = -1; |
74 | module_param(ignore_ppc, uint, 0644); | 74 | module_param(ignore_ppc, int, 0644); |
75 | MODULE_PARM_DESC(ignore_ppc, "If the frequency of your machine gets wrongly" \ | 75 | MODULE_PARM_DESC(ignore_ppc, "If the frequency of your machine gets wrongly" \ |
76 | "limited by BIOS, this should help"); | 76 | "limited by BIOS, this should help"); |
77 | 77 | ||