Commit ee8598ae authored by Bartosz Golaszewski's avatar Bartosz Golaszewski

gpio: mockup: fix coding style

I have missed two indentation issues in commit 64e7112e ("gpio:
mockup: add set_config to support pull up/down"). This commit fixes them.

Fixes: 64e7112e ("gpio: mockup: add set_config to support pull up/down")
Signed-off-by: default avatarBartosz Golaszewski <bgolaszewski@baylibre.com>
parent fd698849
......@@ -156,7 +156,7 @@ static int gpio_mockup_apply_pull(struct gpio_mockup_chip *chip,
mutex_lock(&chip->lock);
if (test_bit(FLAG_REQUESTED, &desc->flags) &&
!test_bit(FLAG_IS_OUT, &desc->flags)) {
!test_bit(FLAG_IS_OUT, &desc->flags)) {
curr = __gpio_mockup_get(chip, offset);
if (curr == value)
goto out;
......@@ -165,7 +165,7 @@ static int gpio_mockup_apply_pull(struct gpio_mockup_chip *chip,
irq_type = irq_get_trigger_type(irq);
if ((value == 1 && (irq_type & IRQ_TYPE_EDGE_RISING)) ||
(value == 0 && (irq_type & IRQ_TYPE_EDGE_FALLING)))
(value == 0 && (irq_type & IRQ_TYPE_EDGE_FALLING)))
irq_sim_fire(sim, offset);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment