]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - drivers/video/backlight/adp5520_bl.c
powerpc: Put the gpr save/restore functions in their own section
[karo-tx-linux.git] / drivers / video / backlight / adp5520_bl.c
index 4911ea7989c82553dd90558a8afc4637da8c539b..df5db99af23d7cfe711b6d155766ca362d89a7dd 100644 (file)
@@ -160,7 +160,7 @@ static ssize_t adp5520_store(struct device *dev, const char *buf,
        unsigned long val;
        int ret;
 
-       ret = strict_strtoul(buf, 10, &val);
+       ret = kstrtoul(buf, 10, &val);
        if (ret)
                return ret;
 
@@ -214,7 +214,7 @@ static ssize_t adp5520_bl_daylight_max_store(struct device *dev,
        struct adp5520_bl *data = dev_get_drvdata(dev);
        int ret;
 
-       ret = strict_strtoul(buf, 10, &data->cached_daylight_max);
+       ret = kstrtoul(buf, 10, &data->cached_daylight_max);
        if (ret < 0)
                return ret;