diff options
author | Jean Delvare <khali@linux-fr.org> | 2009-12-09 14:35:59 -0500 |
---|---|---|
committer | Jean Delvare <khali@linux-fr.org> | 2009-12-09 14:35:59 -0500 |
commit | f95f0b4ce8cae533c3731e54a51892921db10ffe (patch) | |
tree | 87c6eb318759f48d0bf0e601344e3c500eba3538 /drivers/hwmon/thmc50.c | |
parent | 93ee0a75f6e4b2c7ec20fd8f4ace87f88ba785b9 (diff) |
hwmon: (thmc50) Stop using I2C_CLIENT_MODULE_PARM
The thmc50 driver is the last user of I2C_CLIENT_MODULE_PARM, and I
would like to get rid of that macro.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Tested-by: Krzysztof Helt <krzysztof.h1@wp.pl>
Diffstat (limited to 'drivers/hwmon/thmc50.c')
-rw-r--r-- | drivers/hwmon/thmc50.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/hwmon/thmc50.c b/drivers/hwmon/thmc50.c index 1db9bc802f2b..4b793849c738 100644 --- a/drivers/hwmon/thmc50.c +++ b/drivers/hwmon/thmc50.c | |||
@@ -36,7 +36,11 @@ static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END }; | |||
36 | 36 | ||
37 | /* Insmod parameters */ | 37 | /* Insmod parameters */ |
38 | I2C_CLIENT_INSMOD_2(thmc50, adm1022); | 38 | I2C_CLIENT_INSMOD_2(thmc50, adm1022); |
39 | I2C_CLIENT_MODULE_PARM(adm1022_temp3, "List of adapter,address pairs " | 39 | |
40 | static unsigned short adm1022_temp3[16]; | ||
41 | static unsigned int adm1022_temp3_num; | ||
42 | module_param_array(adm1022_temp3, ushort, &adm1022_temp3_num, 0); | ||
43 | MODULE_PARM_DESC(adm1022_temp3, "List of adapter,address pairs " | ||
40 | "to enable 3rd temperature (ADM1022 only)"); | 44 | "to enable 3rd temperature (ADM1022 only)"); |
41 | 45 | ||
42 | /* Many THMC50 constants specified below */ | 46 | /* Many THMC50 constants specified below */ |