diff options
author | Jean Delvare <khali@linux-fr.org> | 2009-12-09 14:35:48 -0500 |
---|---|---|
committer | Jean Delvare <khali@linux-fr.org> | 2009-12-09 14:35:48 -0500 |
commit | 8918023d40ebb2c086e77368810763975761cb1b (patch) | |
tree | 3c4d9eebab32552b0a7d9a896f92897625ab7678 /drivers/hwmon | |
parent | 591ec6509ed888723caf6ac8ced3f6f718625a1f (diff) |
hwmon: (w83627hf) Drop the force_addr module parameter
This module parameter is there to workaround broken BIOS. I'm not even
sure if it was used in the past 5 years, and it gets in the way of
converting the driver to the MFD infrastructure. So tell the users how
they can do the same from user-space.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Rodolfo Giometti <giometti@linux.it>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/w83627hf.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/hwmon/w83627hf.c b/drivers/hwmon/w83627hf.c index 2be28ac4ede0..d67407d045bd 100644 --- a/drivers/hwmon/w83627hf.c +++ b/drivers/hwmon/w83627hf.c | |||
@@ -59,10 +59,6 @@ static struct platform_device *pdev; | |||
59 | #define DRVNAME "w83627hf" | 59 | #define DRVNAME "w83627hf" |
60 | enum chips { w83627hf, w83627thf, w83697hf, w83637hf, w83687thf }; | 60 | enum chips { w83627hf, w83627thf, w83697hf, w83637hf, w83687thf }; |
61 | 61 | ||
62 | static u16 force_addr; | ||
63 | module_param(force_addr, ushort, 0); | ||
64 | MODULE_PARM_DESC(force_addr, | ||
65 | "Initialize the base address of the sensors"); | ||
66 | static u8 force_i2c = 0x1f; | 62 | static u8 force_i2c = 0x1f; |
67 | module_param(force_i2c, byte, 0); | 63 | module_param(force_i2c, byte, 0); |
68 | MODULE_PARM_DESC(force_i2c, | 64 | MODULE_PARM_DESC(force_i2c, |
@@ -1169,13 +1165,6 @@ static int __init w83627hf_find(int sioaddr, unsigned short *addr, | |||
1169 | } | 1165 | } |
1170 | 1166 | ||
1171 | superio_select(W83627HF_LD_HWM); | 1167 | superio_select(W83627HF_LD_HWM); |
1172 | force_addr &= WINB_ALIGNMENT; | ||
1173 | if (force_addr) { | ||
1174 | printk(KERN_WARNING DRVNAME ": Forcing address 0x%x\n", | ||
1175 | force_addr); | ||
1176 | superio_outb(WINB_BASE_REG, force_addr >> 8); | ||
1177 | superio_outb(WINB_BASE_REG + 1, force_addr & 0xff); | ||
1178 | } | ||
1179 | val = (superio_inb(WINB_BASE_REG) << 8) | | 1168 | val = (superio_inb(WINB_BASE_REG) << 8) | |
1180 | superio_inb(WINB_BASE_REG + 1); | 1169 | superio_inb(WINB_BASE_REG + 1); |
1181 | *addr = val & WINB_ALIGNMENT; | 1170 | *addr = val & WINB_ALIGNMENT; |