aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/w83791d.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2014-08-06 08:28:02 +0800
committerGuenter Roeck <linux@roeck-us.net>2014-08-05 19:44:42 -0700
commitfe04f24b831cf384eda9798e1af642b96ca19d29 (patch)
treec17cc9942e42391da0cc6842878b321a439af691 /drivers/hwmon/w83791d.c
parenthwmon: (w83627hf) Fix vrm write operation (diff)
downloadlinux-dev-fe04f24b831cf384eda9798e1af642b96ca19d29.tar.xz
linux-dev-fe04f24b831cf384eda9798e1af642b96ca19d29.zip
hwmon: (w83791d) Fix vrm write operation
vrm is an u8, so the written value needs to be limited to [0, 255]. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/w83791d.c')
-rw-r--r--drivers/hwmon/w83791d.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/hwmon/w83791d.c b/drivers/hwmon/w83791d.c
index cb3765fec98c..001df856913f 100644
--- a/drivers/hwmon/w83791d.c
+++ b/drivers/hwmon/w83791d.c
@@ -1181,6 +1181,9 @@ static ssize_t store_vrm_reg(struct device *dev,
if (err)
return err;
+ if (val > 255)
+ return -EINVAL;
+
data->vrm = val;
return count;
}