mirror of
https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux
synced 2025-10-01 05:09:18 +10:00
gpio: sim: replace memmove() + strstrip() with skip_spaces() + strim()
Turns out we can avoid the memmove() by using skip_spaces() and strim(). We did that in gpio-consumer, let's do it in gpio-sim. Suggested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
parent
a40fe1ffb6
commit
ba0294df2d
@ -642,16 +642,13 @@ static bool gpio_sim_device_is_live_unlocked(struct gpio_sim_device *dev)
|
||||
|
||||
static char *gpio_sim_strdup_trimmed(const char *str, size_t count)
|
||||
{
|
||||
char *dup, *trimmed;
|
||||
char *trimmed;
|
||||
|
||||
dup = kstrndup(str, count, GFP_KERNEL);
|
||||
if (!dup)
|
||||
trimmed = kstrndup(skip_spaces(str), count, GFP_KERNEL);
|
||||
if (!trimmed)
|
||||
return NULL;
|
||||
|
||||
trimmed = strstrip(dup);
|
||||
memmove(dup, trimmed, strlen(trimmed) + 1);
|
||||
|
||||
return dup;
|
||||
return strim(trimmed);
|
||||
}
|
||||
|
||||
static ssize_t gpio_sim_device_config_dev_name_show(struct config_item *item,
|
||||
|
Loading…
Reference in New Issue
Block a user