diff options
author | Jean Delvare <khali@linux-fr.org> | 2005-11-14 23:11:45 +0100 |
---|---|---|
committer | Chris Wright <chrisw@osdl.org> | 2005-11-24 14:10:12 -0800 |
commit | ce79890ea55a84b3600bbee421be78117c2532bb (patch) | |
tree | cec3480b8b0f9fd06040b5c848add1d517a1f4b5 | |
parent | 30b2b8ee1866188c1f86aefe7dedca4b9681772f (diff) | |
download | linux-stable-ce79890ea55a84b3600bbee421be78117c2532bb.tar.gz linux-stable-ce79890ea55a84b3600bbee421be78117c2532bb.tar.bz2 linux-stable-ce79890ea55a84b3600bbee421be78117c2532bb.zip |
[PATCH] hwmon: Fix lm78 VID conversion
Fix the lm78 VID reading, which I accidentally broke while making
this driver use the common vid_from_reg function rather than
reimplementing its own in 2.6.14-rc1.
I'm not proud of it, trust me.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Chris Wright <chrisw@osdl.org>
-rw-r--r-- | drivers/hwmon/lm78.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/lm78.c b/drivers/hwmon/lm78.c index f6730dc3573b..b24ee7628429 100644 --- a/drivers/hwmon/lm78.c +++ b/drivers/hwmon/lm78.c @@ -451,7 +451,7 @@ static DEVICE_ATTR(fan3_div, S_IRUGO, show_fan_3_div, NULL); static ssize_t show_vid(struct device *dev, struct device_attribute *attr, char *buf) { struct lm78_data *data = lm78_update_device(dev); - return sprintf(buf, "%d\n", vid_from_reg(82, data->vid)); + return sprintf(buf, "%d\n", vid_from_reg(data->vid, 82)); } static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL); |