diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpio/gpio-da9052.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-da9052.c b/drivers/gpio/gpio-da9052.c index 24b8c2974047..63f9f5bbc75c 100644 --- a/drivers/gpio/gpio-da9052.c +++ b/drivers/gpio/gpio-da9052.c | |||
@@ -185,7 +185,11 @@ static int da9052_gpio_to_irq(struct gpio_chip *gc, u32 offset) | |||
185 | struct da9052_gpio *gpio = to_da9052_gpio(gc); | 185 | struct da9052_gpio *gpio = to_da9052_gpio(gc); |
186 | struct da9052 *da9052 = gpio->da9052; | 186 | struct da9052 *da9052 = gpio->da9052; |
187 | 187 | ||
188 | return da9052->irq_base + DA9052_IRQ_GPI0 + offset; | 188 | int irq; |
189 | |||
190 | irq = regmap_irq_get_virq(da9052->irq_data, DA9052_IRQ_GPI0 + offset); | ||
191 | |||
192 | return irq; | ||
189 | } | 193 | } |
190 | 194 | ||
191 | static struct gpio_chip reference_gp __devinitdata = { | 195 | static struct gpio_chip reference_gp __devinitdata = { |