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-s3c24xx | |
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-s3c24xx')
-rw-r--r-- | arch/arm/plat-s3c24xx/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-s3c24xx/irq.c b/arch/arm/plat-s3c24xx/irq.c index ad0d44ef1f93..91ce38393ba6 100644 --- a/arch/arm/plat-s3c24xx/irq.c +++ b/arch/arm/plat-s3c24xx/irq.c | |||
@@ -238,7 +238,7 @@ static struct irq_chip s3c_irqext_chip = { | |||
238 | .unmask = s3c_irqext_unmask, | 238 | .unmask = s3c_irqext_unmask, |
239 | .ack = s3c_irqext_ack, | 239 | .ack = s3c_irqext_ack, |
240 | .set_type = s3c_irqext_type, | 240 | .set_type = s3c_irqext_type, |
241 | .set_wake = s3c_irqext_wake | 241 | .irq_set_wake = s3c_irqext_wake |
242 | }; | 242 | }; |
243 | 243 | ||
244 | static struct irq_chip s3c_irq_eint0t4 = { | 244 | static struct irq_chip s3c_irq_eint0t4 = { |