From: Geert Uytterhoeven Date: Wed, 1 Jul 2020 11:42:11 +0000 (+0200) Subject: gpio: aggregator: Drop pre-initialization in get_arg() X-Git-Tag: block-5.9-2020-08-14~10^2~38 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=2073ea3ab181d42b4fd179ec3f74d53acefb563a;p=linux-2.6-block.git gpio: aggregator: Drop pre-initialization in get_arg() In get_arg(), the variable start is pre-initialized, but overwritten again in the first statement. Rework the assignment to not rely on pre-initialization, to make the code easier to read. Signed-off-by: Geert Uytterhoeven Link: https://lore.kernel.org/r/20200701114212.8520-2-geert+renesas@glider.be Signed-off-by: Linus Walleij --- diff --git a/drivers/gpio/gpio-aggregator.c b/drivers/gpio/gpio-aggregator.c index 9b0adbdddbfc..62a3fcbd4b4b 100644 --- a/drivers/gpio/gpio-aggregator.c +++ b/drivers/gpio/gpio-aggregator.c @@ -38,9 +38,9 @@ static DEFINE_IDR(gpio_aggregator_idr); static char *get_arg(char **args) { - char *start = *args, *end; + char *start, *end; - start = skip_spaces(start); + start = skip_spaces(*args); if (!*start) return NULL;