Commit 2e74778c authored by roel kluin's avatar roel kluin Committed by Benjamin Herrenschmidt

therm_adt746x: Fix signed/unsigned confusion

As suggested, this is used for signed rather than unsigned
Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent c3bd517d
...@@ -498,8 +498,8 @@ static ssize_t store_##name(struct device *dev, struct device_attribute *attr, c ...@@ -498,8 +498,8 @@ static ssize_t store_##name(struct device *dev, struct device_attribute *attr, c
#define BUILD_STORE_FUNC_INT(name, data) \ #define BUILD_STORE_FUNC_INT(name, data) \
static ssize_t store_##name(struct device *dev, struct device_attribute *attr, const char *buf, size_t n) \ static ssize_t store_##name(struct device *dev, struct device_attribute *attr, const char *buf, size_t n) \
{ \ { \
u32 val; \ int val; \
val = simple_strtoul(buf, NULL, 10); \ val = simple_strtol(buf, NULL, 10); \
if (val < 0 || val > 255) \ if (val < 0 || val > 255) \
return -EINVAL; \ return -EINVAL; \
printk(KERN_INFO "Setting specified fan speed to %d\n", val); \ printk(KERN_INFO "Setting specified fan speed to %d\n", val); \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment