Skip to content

Commit

Permalink
gpio: extraxfs: fix returnvar.cocci warnings
Browse files Browse the repository at this point in the history
Remove unneeded variable used to store return value.

Generated by: scripts/coccinelle/misc/returnvar.cocci

Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
  • Loading branch information
Julia Lawall authored and Linus Walleij committed Aug 25, 2015
1 parent a0a8bcf commit 5e22ec0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/gpio/gpio-etraxfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,6 @@ static int etraxfs_gpio_irq_request_resources(struct irq_data *d)
struct etraxfs_gpio_chip *chip = irq_data_get_irq_chip_data(d);
struct etraxfs_gpio_block *block = chip->block;
unsigned int grpirq = etraxfs_gpio_to_group_irq(d->hwirq);
int ret = -EBUSY;

spin_lock(&block->lock);
if (block->group[grpirq])
Expand All @@ -314,7 +313,7 @@ static int etraxfs_gpio_irq_request_resources(struct irq_data *d)

out:
spin_unlock(&block->lock);
return ret;
return -EBUSY;
}

static void etraxfs_gpio_irq_release_resources(struct irq_data *d)
Expand Down

0 comments on commit 5e22ec0

Please sign in to comment.