diff options
| author | Geliang Tang <[email protected]> | 2015-12-30 14:16:38 +0000 |
|---|---|---|
| committer | Linus Walleij <[email protected]> | 2016-01-28 14:28:59 +0000 |
| commit | ccdbddfeff58788f7887f39a681b73c3d95b1d2f (patch) | |
| tree | 3cfc51b7cc3984d0794ddc82bf06bd201f0191da /drivers/gpio/gpio-davinci.c | |
| parent | gpio/qoriq: Add qoriq platforms support (diff) | |
| download | kernel-ccdbddfeff58788f7887f39a681b73c3d95b1d2f.tar.gz kernel-ccdbddfeff58788f7887f39a681b73c3d95b1d2f.zip | |
gpio: davinci: use irq_data_get_chip_type
Use irq_data_get_chip_type() instead of container_of().
Signed-off-by: Geliang Tang <[email protected]>
Reviewed-by: Grygorii Strashko <[email protected]>
Acked-by: Santosh Shilimkar <[email protected]>
Signed-off-by: Linus Walleij <[email protected]>
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) { static struct irq_chip_type gpio_unbanked; - gpio_unbanked = *container_of(irq_get_chip(irq), - struct irq_chip_type, chip); + gpio_unbanked = *irq_data_get_chip_type(irq_get_irq_data(irq)); return &gpio_unbanked.chip; }; |
