diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-09-04 09:58:33 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2012-09-06 03:18:07 -0400 |
commit | a9f77c93ab673d145de46926d676e9f09f7de8eb (patch) | |
tree | f983814f655068553bc0c54c191ed4121bea194d /drivers/gpio/gpio-em.c | |
parent | 5b4254386bf9a96dfcef9ec8e099bd06fe3e6896 (diff) |
gpio: em: Use irq_data_get_irq_chip_data() at appropriate places
Then we can remove irq_to_priv() function.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-em.c')
-rw-r--r-- | drivers/gpio/gpio-em.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/drivers/gpio/gpio-em.c b/drivers/gpio/gpio-em.c index ae37181798b3..6c7a91a7127a 100644 --- a/drivers/gpio/gpio-em.c +++ b/drivers/gpio/gpio-em.c | |||
@@ -85,22 +85,16 @@ static inline void em_gio_write(struct em_gio_priv *p, int offs, | |||
85 | iowrite32(value, p->base1 + (offs - GIO_IDT0)); | 85 | iowrite32(value, p->base1 + (offs - GIO_IDT0)); |
86 | } | 86 | } |
87 | 87 | ||
88 | static inline struct em_gio_priv *irq_to_priv(struct irq_data *d) | ||
89 | { | ||
90 | struct irq_chip *chip = irq_data_get_irq_chip(d); | ||
91 | return container_of(chip, struct em_gio_priv, irq_chip); | ||
92 | } | ||
93 | |||
94 | static void em_gio_irq_disable(struct irq_data *d) | 88 | static void em_gio_irq_disable(struct irq_data *d) |
95 | { | 89 | { |
96 | struct em_gio_priv *p = irq_to_priv(d); | 90 | struct em_gio_priv *p = irq_data_get_irq_chip_data(d); |
97 | 91 | ||
98 | em_gio_write(p, GIO_IDS, BIT(irqd_to_hwirq(d))); | 92 | em_gio_write(p, GIO_IDS, BIT(irqd_to_hwirq(d))); |
99 | } | 93 | } |
100 | 94 | ||
101 | static void em_gio_irq_enable(struct irq_data *d) | 95 | static void em_gio_irq_enable(struct irq_data *d) |
102 | { | 96 | { |
103 | struct em_gio_priv *p = irq_to_priv(d); | 97 | struct em_gio_priv *p = irq_data_get_irq_chip_data(d); |
104 | 98 | ||
105 | em_gio_write(p, GIO_IEN, BIT(irqd_to_hwirq(d))); | 99 | em_gio_write(p, GIO_IEN, BIT(irqd_to_hwirq(d))); |
106 | } | 100 | } |
@@ -118,7 +112,7 @@ static unsigned char em_gio_sense_table[IRQ_TYPE_SENSE_MASK + 1] = { | |||
118 | static int em_gio_irq_set_type(struct irq_data *d, unsigned int type) | 112 | static int em_gio_irq_set_type(struct irq_data *d, unsigned int type) |
119 | { | 113 | { |
120 | unsigned char value = em_gio_sense_table[type & IRQ_TYPE_SENSE_MASK]; | 114 | unsigned char value = em_gio_sense_table[type & IRQ_TYPE_SENSE_MASK]; |
121 | struct em_gio_priv *p = irq_to_priv(d); | 115 | struct em_gio_priv *p = irq_data_get_irq_chip_data(d); |
122 | unsigned int reg, offset, shift; | 116 | unsigned int reg, offset, shift; |
123 | unsigned long flags; | 117 | unsigned long flags; |
124 | unsigned long tmp; | 118 | unsigned long tmp; |