aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2014-08-05 20:28:46 -0400
committerGuenter Roeck <linux@roeck-us.net>2014-08-05 22:44:42 -0400
commit2aeee04df8e0ea4d5b91da630687af1a1d93c941 (patch)
treeee8eaca0117ea92924600fb1faf88d534646fd4b
parentfe04f24b831cf384eda9798e1af642b96ca19d29 (diff)
hwmon: (w83793) 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>
-rw-r--r--drivers/hwmon/w83793.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/hwmon/w83793.c b/drivers/hwmon/w83793.c
index 9d63d71214ca..816aa6caf5d5 100644
--- a/drivers/hwmon/w83793.c
+++ b/drivers/hwmon/w83793.c
@@ -353,6 +353,9 @@ store_vrm(struct device *dev, struct device_attribute *attr,
353 if (err) 353 if (err)
354 return err; 354 return err;
355 355
356 if (val > 255)
357 return -EINVAL;
358
356 data->vrm = val; 359 data->vrm = val;
357 return count; 360 return count;
358} 361}