OSDN Git Service

power: supply: twl4030_charger: Use sysfs_match_string() helper
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Sun, 11 Jun 2017 15:15:48 +0000 (18:15 +0300)
committerSebastian Reichel <sre@kernel.org>
Sun, 11 Jun 2017 23:40:05 +0000 (01:40 +0200)
Use sysfs_match_string() helper instead of open coded variant.

Cc: Sebastian Reichel <sre@kernel.org>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
drivers/power/supply/twl4030_charger.c

index 785a07b..07c70e5 100644 (file)
@@ -153,7 +153,7 @@ struct twl4030_bci {
 };
 
 /* strings for 'usb_mode' values */
-static char *modes[] = { "off", "auto", "continuous" };
+static const char *modes[] = { "off", "auto", "continuous" };
 
 /*
  * clear and set bits on an given register on a given module
@@ -669,14 +669,10 @@ twl4030_bci_mode_store(struct device *dev, struct device_attribute *attr,
        int mode;
        int status;
 
-       if (sysfs_streq(buf, modes[0]))
-               mode = 0;
-       else if (sysfs_streq(buf, modes[1]))
-               mode = 1;
-       else if (sysfs_streq(buf, modes[2]))
-               mode = 2;
-       else
-               return -EINVAL;
+       mode = sysfs_match_string(modes, buf);
+       if (mode < 0)
+               return mode;
+
        if (dev == &bci->ac->dev) {
                if (mode == 2)
                        return -EINVAL;