diff options
Diffstat (limited to 'drivers/mfd/asic3.c')
-rw-r--r-- | drivers/mfd/asic3.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/mfd/asic3.c b/drivers/mfd/asic3.c index b85bbd7f0d19..1895cf9fab8c 100644 --- a/drivers/mfd/asic3.c +++ b/drivers/mfd/asic3.c | |||
@@ -525,6 +525,11 @@ static void asic3_gpio_set(struct gpio_chip *chip, | |||
525 | return; | 525 | return; |
526 | } | 526 | } |
527 | 527 | ||
528 | static int asic3_gpio_to_irq(struct gpio_chip *chip, unsigned offset) | ||
529 | { | ||
530 | return (offset < ASIC3_NUM_GPIOS) ? IRQ_BOARD_START + offset : -ENXIO; | ||
531 | } | ||
532 | |||
528 | static __init int asic3_gpio_probe(struct platform_device *pdev, | 533 | static __init int asic3_gpio_probe(struct platform_device *pdev, |
529 | u16 *gpio_config, int num) | 534 | u16 *gpio_config, int num) |
530 | { | 535 | { |
@@ -976,6 +981,7 @@ static int __init asic3_probe(struct platform_device *pdev) | |||
976 | asic->gpio.set = asic3_gpio_set; | 981 | asic->gpio.set = asic3_gpio_set; |
977 | asic->gpio.direction_input = asic3_gpio_direction_input; | 982 | asic->gpio.direction_input = asic3_gpio_direction_input; |
978 | asic->gpio.direction_output = asic3_gpio_direction_output; | 983 | asic->gpio.direction_output = asic3_gpio_direction_output; |
984 | asic->gpio.to_irq = asic3_gpio_to_irq; | ||
979 | 985 | ||
980 | ret = asic3_gpio_probe(pdev, | 986 | ret = asic3_gpio_probe(pdev, |
981 | pdata->gpio_config, | 987 | pdata->gpio_config, |