From: Axel Lin Date: Wed, 6 Aug 2014 00:24:54 +0000 (+0800) Subject: hwmon: (pc87360) Fix vrm write operation X-Git-Tag: firefly_0821_release~176^2~3393^2~5 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5e3b5610f921701b235fc9a1bb17c040224bd76e;p=firefly-linux-kernel-4.4.55.git hwmon: (pc87360) Fix vrm write operation vrm is an u8, so the written value needs to be limited to [0, 255]. Signed-off-by: Axel Lin Signed-off-by: Guenter Roeck --- diff --git a/drivers/hwmon/pc87360.c b/drivers/hwmon/pc87360.c index 988181e4cfcd..145f674c1d87 100644 --- 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; }