gpiolib: Get rid of redundant 'else'
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Wed, 30 Mar 2022 15:06:20 +0000 (18:06 +0300)
committerBartosz Golaszewski <brgl@bgdev.pl>
Tue, 5 Apr 2022 12:20:07 +0000 (14:20 +0200)
commit1cef8b5019769d46725932eeace7a383bca97905
tree69cfa51c44632be9350b347881cf612a4d936d22
parent265a3bf486d4aac913d1bcbe81b01e271328a265
gpiolib: Get rid of redundant 'else'

In the snippets like the following

if (...)
return / goto / break / continue ...;
else
...

the 'else' is redundant. Get rid of it. In case of IOCTLs use
switch-case pattern that seems the usual in such cases.

While at it, clarify necessity of else in gpiod_direction_output()
by attaching else if to the closing curly brace on a previous line.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
drivers/gpio/gpiolib-cdev.c
drivers/gpio/gpiolib.c