projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
996fba0
)
ACPI: thinkpad_acpi: use bool for boolean parameters
author
Henrique de Moraes Holschuh
<hmh@hmh.eng.br>
Thu, 19 Jul 2007 02:45:41 +0000
(23:45 -0300)
committer
Len Brown
<len.brown@intel.com>
Sun, 22 Jul 2007 03:48:02 +0000
(23:48 -0400)
Some of the module parameters are boolean in nature. Make it so in fact.
Signed-off-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Signed-off-by: Len Brown <len.brown@intel.com>
drivers/misc/thinkpad_acpi.c
patch
|
blob
|
history
diff --git
a/drivers/misc/thinkpad_acpi.c
b/drivers/misc/thinkpad_acpi.c
index 78e41102a95ce1e0055e4d0fdc8d4e2071664564..44aa8c92f91f599d7cf46d478e34e896af5b2ab6 100644
(file)
--- a/
drivers/misc/thinkpad_acpi.c
+++ b/
drivers/misc/thinkpad_acpi.c
@@
-4444,10
+4444,10
@@
static u32 dbg_level;
module_param_named(debug, dbg_level, uint, 0);
static int force_load;
-module_param(force_load,
int
, 0);
+module_param(force_load,
bool
, 0);
static int fan_control_allowed;
-module_param_named(fan_control, fan_control_allowed,
int
, 0);
+module_param_named(fan_control, fan_control_allowed,
bool
, 0);
#define IBM_PARAM(feature) \
module_param_call(feature, set_ibm_param, NULL, NULL, 0)