diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-08-06 08:28:02 +0800 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2014-08-05 19:44:42 -0700 |
commit | fe04f24b831cf384eda9798e1af642b96ca19d29 (patch) | |
tree | c17cc9942e42391da0cc6842878b321a439af691 /drivers/hwmon/w83791d.c | |
parent | 970255b75d0b54e457091182a7ae3a188ac0c346 (diff) |
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.c | 3 |
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; } |