match_string() returns the index of an array for a matching string, which can be used intead of open coded variant.
Cc: Linus Walleij <linus.wall...@linaro.org> Cc: linux-g...@vger.kernel.org Signed-off-by: Yisheng Xie <xieyishe...@huawei.com> --- drivers/gpio/gpiolib-of.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c index 586d151..9cbc898 100644 --- a/drivers/gpio/gpiolib-of.c +++ b/drivers/gpio/gpiolib-of.c @@ -202,7 +202,6 @@ static struct gpio_desc *of_find_regulator_gpio(struct device *dev, const char * }; struct device_node *np = dev->of_node; struct gpio_desc *desc; - int i; if (!IS_ENABLED(CONFIG_REGULATOR)) return ERR_PTR(-ENOENT); @@ -210,11 +209,7 @@ static struct gpio_desc *of_find_regulator_gpio(struct device *dev, const char * if (!con_id) return ERR_PTR(-ENOENT); - for (i = 0; i < ARRAY_SIZE(whitelist); i++) - if (!strcmp(con_id, whitelist[i])) - break; - - if (i == ARRAY_SIZE(whitelist)) + if (match_string(whitelist, ARRAY_SIZE(whitelist), con_id) < 0) return ERR_PTR(-ENOENT); desc = of_get_named_gpiod_flags(np, con_id, 0, of_flags); -- 1.7.12.4