]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
gpio: sim: use sysfs_streq() and avoid an strdup()
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 9 Aug 2023 13:14:41 +0000 (15:14 +0200)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Fri, 11 Aug 2023 11:58:06 +0000 (13:58 +0200)
When comparing strings passed to us from configfs, we can pass the page
argument directly to sysfs_streq() and avoid manual string trimming.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
drivers/gpio/gpio-sim.c

index cfbdade841e8491940f46172a46c65bfbee6e148..1a3729eb44ebbbd9526e4392d8669137976d3247 100644 (file)
@@ -1272,7 +1272,6 @@ gpio_sim_hog_config_direction_store(struct config_item *item,
 {
        struct gpio_sim_hog *hog = to_gpio_sim_hog(item);
        struct gpio_sim_device *dev = gpio_sim_hog_get_device(hog);
-       char *trimmed;
        int dir;
 
        mutex_lock(&dev->lock);
@@ -1282,23 +1281,15 @@ gpio_sim_hog_config_direction_store(struct config_item *item,
                return -EBUSY;
        }
 
-       trimmed = gpio_sim_strdup_trimmed(page, count);
-       if (!trimmed) {
-               mutex_unlock(&dev->lock);
-               return -ENOMEM;
-       }
-
-       if (strcmp(trimmed, "input") == 0)
+       if (sysfs_streq(page, "input"))
                dir = GPIOD_IN;
-       else if (strcmp(trimmed, "output-high") == 0)
+       else if (sysfs_streq(page, "output-high"))
                dir = GPIOD_OUT_HIGH;
-       else if (strcmp(trimmed, "output-low") == 0)
+       else if (sysfs_streq(page, "output-low"))
                dir = GPIOD_OUT_LOW;
        else
                dir = -EINVAL;
 
-       kfree(trimmed);
-
        if (dir < 0) {
                mutex_unlock(&dev->lock);
                return dir;