gpiolib: Optimize gpiochip_remove() when check for requested line
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Tue, 25 Feb 2020 11:47:25 +0000 (13:47 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 28 Feb 2020 22:58:56 +0000 (23:58 +0100)
commit869233f81337bfb33c79f1e7539147d52c0ba383
treebe3ae5f88bd48cd5e86d948f4698e9be05806e8e
parent63636d956c455c0fbe2118078a03f563ddd6bf6e
gpiolib: Optimize gpiochip_remove() when check for requested line

Here are the following optimizations have been done:
 - break the loop after first found requested line
  - due to above, drop redundant boolean variable
 - replace open coded variant of gpiochip_is_requested()
  - due to above, drop redundant pointer to struct gpio_desc
 - use 'unsigned int' instead of 'unsigned' for loop counter

Note, pointer to struct gpio_chip followed by pointer to struct gpio_device
is still valid, back link is not.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20200225114725.839-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpiolib.c