projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa642d9
)
hwmon: (pc87360) Fix vrm write operation
author
Axel Lin
<axel.lin@ingics.com>
Wed, 6 Aug 2014 00:24:54 +0000
(08:24 +0800)
committer
Guenter Roeck
<linux@roeck-us.net>
Wed, 6 Aug 2014 02:44:42 +0000
(19:44 -0700)
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>
drivers/hwmon/pc87360.c
patch
|
blob
|
history
diff --git
a/drivers/hwmon/pc87360.c
b/drivers/hwmon/pc87360.c
index 988181e4cfcdc8ab7e40f02ab2977b38ee231120..145f674c1d8722afecf3e125245eafd3b96c6e34 100644
(file)
--- a/
drivers/hwmon/pc87360.c
+++ b/
drivers/hwmon/pc87360.c
@@
-615,6
+615,9
@@
static ssize_t set_vrm(struct device *dev, struct device_attribute *attr,
if (err)
return err;
+ if (val > 255)
+ return -EINVAL;
+
data->vrm = val;
return count;
}