diff options
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2020-02-10 16:50:59 +0100 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2020-02-20 15:41:05 +0100 |
commit | f6e51bb331d51d4b08fe9b766c5ed442f889c853 (patch) | |
tree | 05de0000cfb10436b7dc22c571ac395f150d74bb /drivers/gpio/gpio-mockup.c | |
parent | b36368f685d66a53da73a05b63af32233e32cf36 (diff) | |
download | linux-stable-f6e51bb331d51d4b08fe9b766c5ed442f889c853.tar.gz linux-stable-f6e51bb331d51d4b08fe9b766c5ed442f889c853.tar.bz2 linux-stable-f6e51bb331d51d4b08fe9b766c5ed442f889c853.zip |
gpio: mockup: coding-style fix
The indentation is wrong in gpio_mockup_apply_pull(). This patch makes
the code more readable.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Link: https://lore.kernel.org/r/20200210155059.29609-1-brgl@bgdev.pl
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-mockup.c')
-rw-r--r-- | drivers/gpio/gpio-mockup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-mockup.c b/drivers/gpio/gpio-mockup.c index 7d343bea784a..3eb94f3740d1 100644 --- a/drivers/gpio/gpio-mockup.c +++ b/drivers/gpio/gpio-mockup.c @@ -171,7 +171,7 @@ static int gpio_mockup_apply_pull(struct gpio_mockup_chip *chip, /* Change the value unless we're actively driving the line. */ if (!test_bit(FLAG_REQUESTED, &desc->flags) || - !test_bit(FLAG_IS_OUT, &desc->flags)) + !test_bit(FLAG_IS_OUT, &desc->flags)) __gpio_mockup_set(chip, offset, value); out: |