diff options
author | Geliang Tang <geliangtang@163.com> | 2015-12-30 09:16:38 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-01-28 09:28:59 -0500 |
commit | ccdbddfeff58788f7887f39a681b73c3d95b1d2f (patch) | |
tree | 3cfc51b7cc3984d0794ddc82bf06bd201f0191da /drivers/gpio/gpio-davinci.c | |
parent | 5df7fd46b70bcc5517dcfbd433719cea9ebe5eff (diff) |
gpio: davinci: use irq_data_get_chip_type
Use irq_data_get_chip_type() instead of container_of().
Signed-off-by: Geliang Tang <geliangtang@163.com>
Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com>
Acked-by: Santosh Shilimkar <ssantosh@kernel.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-davinci.c')
-rw-r--r-- | drivers/gpio/gpio-davinci.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpio/gpio-davinci.c b/drivers/gpio/gpio-davinci.c index ec58f4288649..845edffbcc3f 100644 --- a/drivers/gpio/gpio-davinci.c +++ b/drivers/gpio/gpio-davinci.c | |||
@@ -432,8 +432,7 @@ static struct irq_chip *davinci_gpio_get_irq_chip(unsigned int irq) | |||
432 | { | 432 | { |
433 | static struct irq_chip_type gpio_unbanked; | 433 | static struct irq_chip_type gpio_unbanked; |
434 | 434 | ||
435 | gpio_unbanked = *container_of(irq_get_chip(irq), | 435 | gpio_unbanked = *irq_data_get_chip_type(irq_get_irq_data(irq)); |
436 | struct irq_chip_type, chip); | ||
437 | 436 | ||
438 | return &gpio_unbanked.chip; | 437 | return &gpio_unbanked.chip; |
439 | }; | 438 | }; |