diff options
-rw-r--r-- | drivers/video/backlight/adp8870_bl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/backlight/adp8870_bl.c b/drivers/video/backlight/adp8870_bl.c index 9be58c6f18f1..c90539bb429f 100644 --- a/drivers/video/backlight/adp8870_bl.c +++ b/drivers/video/backlight/adp8870_bl.c | |||
@@ -572,7 +572,7 @@ static ssize_t adp8870_store(struct device *dev, const char *buf, | |||
572 | unsigned long val; | 572 | unsigned long val; |
573 | int ret; | 573 | int ret; |
574 | 574 | ||
575 | ret = strict_strtoul(buf, 10, &val); | 575 | ret = kstrtoul(buf, 10, &val); |
576 | if (ret) | 576 | if (ret) |
577 | return ret; | 577 | return ret; |
578 | 578 | ||
@@ -652,7 +652,7 @@ static ssize_t adp8870_bl_l1_daylight_max_store(struct device *dev, | |||
652 | struct device_attribute *attr, const char *buf, size_t count) | 652 | struct device_attribute *attr, const char *buf, size_t count) |
653 | { | 653 | { |
654 | struct adp8870_bl *data = dev_get_drvdata(dev); | 654 | struct adp8870_bl *data = dev_get_drvdata(dev); |
655 | int ret = strict_strtoul(buf, 10, &data->cached_daylight_max); | 655 | int ret = kstrtoul(buf, 10, &data->cached_daylight_max); |
656 | if (ret) | 656 | if (ret) |
657 | return ret; | 657 | return ret; |
658 | 658 | ||
@@ -794,7 +794,7 @@ static ssize_t adp8870_bl_ambient_light_zone_store(struct device *dev, | |||
794 | uint8_t reg_val; | 794 | uint8_t reg_val; |
795 | int ret; | 795 | int ret; |
796 | 796 | ||
797 | ret = strict_strtoul(buf, 10, &val); | 797 | ret = kstrtoul(buf, 10, &val); |
798 | if (ret) | 798 | if (ret) |
799 | return ret; | 799 | return ret; |
800 | 800 | ||