Commit dc406f56313a4d1fae8461db894a871232043810

Authored by Jingoo Han
Committed by Linus Torvalds
1 parent 8dd9d7f2df

drivers/video/backlight/adp8870_bl.c: use kstrtoul()

The usage of strict_strtoul() is not preferred. Thus, kstrtoul
should be used.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Cc: Michael Hennerich <michael.hennerich@analog.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 3 additions and 3 deletions Side-by-side Diff

drivers/video/backlight/adp8870_bl.c
... ... @@ -572,7 +572,7 @@
572 572 unsigned long val;
573 573 int ret;
574 574  
575   - ret = strict_strtoul(buf, 10, &val);
  575 + ret = kstrtoul(buf, 10, &val);
576 576 if (ret)
577 577 return ret;
578 578  
... ... @@ -652,7 +652,7 @@
652 652 struct device_attribute *attr, const char *buf, size_t count)
653 653 {
654 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 656 if (ret)
657 657 return ret;
658 658  
... ... @@ -794,7 +794,7 @@
794 794 uint8_t reg_val;
795 795 int ret;
796 796  
797   - ret = strict_strtoul(buf, 10, &val);
  797 + ret = kstrtoul(buf, 10, &val);
798 798 if (ret)
799 799 return ret;
800 800