diff options
Diffstat (limited to 'drivers/hwmon/w83781d.c')
-rw-r--r-- | drivers/hwmon/w83781d.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwmon/w83781d.c b/drivers/hwmon/w83781d.c index 65b685e2c7b7..17a8fa2d9ae9 100644 --- a/drivers/hwmon/w83781d.c +++ b/drivers/hwmon/w83781d.c | |||
@@ -67,11 +67,11 @@ module_param_array(force_subclients, short, NULL, 0); | |||
67 | MODULE_PARM_DESC(force_subclients, "List of subclient addresses: " | 67 | MODULE_PARM_DESC(force_subclients, "List of subclient addresses: " |
68 | "{bus, clientaddr, subclientaddr1, subclientaddr2}"); | 68 | "{bus, clientaddr, subclientaddr1, subclientaddr2}"); |
69 | 69 | ||
70 | static int reset; | 70 | static bool reset; |
71 | module_param(reset, bool, 0); | 71 | module_param(reset, bool, 0); |
72 | MODULE_PARM_DESC(reset, "Set to one to reset chip on load"); | 72 | MODULE_PARM_DESC(reset, "Set to one to reset chip on load"); |
73 | 73 | ||
74 | static int init = 1; | 74 | static bool init = 1; |
75 | module_param(init, bool, 0); | 75 | module_param(init, bool, 0); |
76 | MODULE_PARM_DESC(init, "Set to zero to bypass chip initialization"); | 76 | MODULE_PARM_DESC(init, "Set to zero to bypass chip initialization"); |
77 | 77 | ||