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:
970255b
)
hwmon: (w83791d) Fix vrm write operation
author
Axel Lin
<axel.lin@ingics.com>
Wed, 6 Aug 2014 00:28:02 +0000
(08:28 +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/w83791d.c
patch
|
blob
|
history
diff --git
a/drivers/hwmon/w83791d.c
b/drivers/hwmon/w83791d.c
index cb3765fec98c079e121472830bd576e37e17fab9..001df856913feba93790bf9383b2023115defad3 100644
(file)
--- 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;
}