From: Axel Lin Date: Wed, 6 Aug 2014 00:24:54 +0000 (+0800) Subject: hwmon: (pc87360) Fix vrm write operation X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5e3b5610f921701b235fc9a1bb17c040224bd76e;p=linux.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 988181e4cfcdc..145f674c1d872 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; }