diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-12-02 00:35:38 -0500 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2010-12-29 19:36:52 -0500 |
commit | f5aeffb784f35f82b048969a4d7bcca42c783c84 (patch) | |
tree | 7f6a3b4361787748790248a9f31833fc4b2f8fa6 /arch/arm/plat-s5p | |
parent | 387c31c7e5c9805b0aef8833d1731a5fe7bdea14 (diff) |
ARM: SAMSUNG: Convert s3c_irqext_wake() to new irq_ interrupt methods
Kernel 2.6.37 adds new interrupt methods which take a struct irq_data
rather than an irq number. Begin converting Samsung platforms over to
these methods by converting s3c_irqext_wake() with a simple textual
substitution.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/plat-s5p')
-rw-r--r-- | arch/arm/plat-s5p/irq-eint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/plat-s5p/irq-eint.c b/arch/arm/plat-s5p/irq-eint.c index 752f1a645f9d..f2f2e1ccd0e6 100644 --- a/arch/arm/plat-s5p/irq-eint.c +++ b/arch/arm/plat-s5p/irq-eint.c | |||
@@ -125,7 +125,7 @@ static struct irq_chip s5p_irq_eint = { | |||
125 | .ack = s5p_irq_eint_ack, | 125 | .ack = s5p_irq_eint_ack, |
126 | .set_type = s5p_irq_eint_set_type, | 126 | .set_type = s5p_irq_eint_set_type, |
127 | #ifdef CONFIG_PM | 127 | #ifdef CONFIG_PM |
128 | .set_wake = s3c_irqext_wake, | 128 | .irq_set_wake = s3c_irqext_wake, |
129 | #endif | 129 | #endif |
130 | }; | 130 | }; |
131 | 131 | ||
@@ -194,7 +194,7 @@ static struct irq_chip s5p_irq_vic_eint = { | |||
194 | .ack = s5p_irq_vic_eint_ack, | 194 | .ack = s5p_irq_vic_eint_ack, |
195 | .set_type = s5p_irq_eint_set_type, | 195 | .set_type = s5p_irq_eint_set_type, |
196 | #ifdef CONFIG_PM | 196 | #ifdef CONFIG_PM |
197 | .set_wake = s3c_irqext_wake, | 197 | .irq_set_wake = s3c_irqext_wake, |
198 | #endif | 198 | #endif |
199 | }; | 199 | }; |
200 | 200 | ||