diff options
| -rw-r--r-- | arch/arm/plat-nomadik/gpio.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/plat-nomadik/gpio.c b/arch/arm/plat-nomadik/gpio.c index 9cb717417ba0..1e0e9130e51e 100644 --- a/arch/arm/plat-nomadik/gpio.c +++ b/arch/arm/plat-nomadik/gpio.c | |||
| @@ -515,12 +515,21 @@ static int nmk_gpio_make_output(struct gpio_chip *chip, unsigned offset, | |||
| 515 | return 0; | 515 | return 0; |
| 516 | } | 516 | } |
| 517 | 517 | ||
| 518 | static int nmk_gpio_to_irq(struct gpio_chip *chip, unsigned offset) | ||
| 519 | { | ||
| 520 | struct nmk_gpio_chip *nmk_chip = | ||
| 521 | container_of(chip, struct nmk_gpio_chip, chip); | ||
| 522 | |||
| 523 | return NOMADIK_GPIO_TO_IRQ(nmk_chip->chip.base) + offset; | ||
| 524 | } | ||
| 525 | |||
| 518 | /* This structure is replicated for each GPIO block allocated at probe time */ | 526 | /* This structure is replicated for each GPIO block allocated at probe time */ |
| 519 | static struct gpio_chip nmk_gpio_template = { | 527 | static struct gpio_chip nmk_gpio_template = { |
| 520 | .direction_input = nmk_gpio_make_input, | 528 | .direction_input = nmk_gpio_make_input, |
| 521 | .get = nmk_gpio_get_input, | 529 | .get = nmk_gpio_get_input, |
| 522 | .direction_output = nmk_gpio_make_output, | 530 | .direction_output = nmk_gpio_make_output, |
| 523 | .set = nmk_gpio_set_output, | 531 | .set = nmk_gpio_set_output, |
| 532 | .to_irq = nmk_gpio_to_irq, | ||
| 524 | .ngpio = NMK_GPIO_PER_CHIP, | 533 | .ngpio = NMK_GPIO_PER_CHIP, |
| 525 | .can_sleep = 0, | 534 | .can_sleep = 0, |
| 526 | }; | 535 | }; |
