Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1299378

[PATCH 2/2] gpio: davinci: use irq_data_get_chip_type

From Geliang Tang <geliangtang@163.com>
Newsgroups linux.kernel
Subject [PATCH 2/2] gpio: davinci: use irq_data_get_chip_type
Date 2015-12-30 15:20 +0100
Message-ID <qLpLA-7Id-11@gated-at.bofh.it> (permalink)
References <qLpLz-7Id-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Use irq_data_get_chip_type() instead of container_of().

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 drivers/gpio/gpio-davinci.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/gpio/gpio-davinci.c b/drivers/gpio/gpio-davinci.c
index 65ebaef..aaa1a249 100644
--- a/drivers/gpio/gpio-davinci.c
+++ b/drivers/gpio/gpio-davinci.c
@@ -435,8 +435,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;
 };
-- 
2.5.0


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 1/2] irqchip: zevio: use irq_data_get_chip_type Geliang Tang <geliangtang@163.com> - 2015-12-30 15:20 +0100
  [PATCH 2/2] gpio: davinci: use irq_data_get_chip_type Geliang Tang <geliangtang@163.com> - 2015-12-30 15:20 +0100
  [tip:irq/core] irqchip/zevio: Use irq_data_get_chip_type() helper tip-bot for Geliang Tang <tipbot@zytor.com> - 2015-12-30 18:40 +0100

csiph-web