gpio: remove unneeded initializer in gpiochip_add_to_list()
This variable is used as an iterator and initialized in the list_for_each() loop. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
Родитель
bb379ceb8d
Коммит
d1aceb80c6
|
@ -190,7 +190,7 @@ EXPORT_SYMBOL_GPL(gpiod_get_direction);
|
|||
*/
|
||||
static int gpiochip_add_to_list(struct gpio_chip *chip)
|
||||
{
|
||||
struct list_head *pos = &gpio_chips;
|
||||
struct list_head *pos;
|
||||
struct gpio_chip *_chip;
|
||||
int err = 0;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче