diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-09-04 14:43:13 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-09-04 14:43:13 -0400 |
commit | 7801907b8c4a49f8ec033d13a938751114a97a55 (patch) | |
tree | c8f3cb07b2f224313519fbc7157d1f647f74d107 /arch/arm/common | |
parent | e24da5d316667a91b3a19b5761a211946ec649bb (diff) |
[ARM] Change irq_chip wake/type methods to set_wake/set_type
This is part of Thomas Gleixner's generic IRQ patch, which converts
ARM to use the generic IRQ subsystem. Here, we rename two of the
irq_chip methods - wake becomes set_wake, and type becomes set_type.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/common')
-rw-r--r-- | arch/arm/common/sa1111.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/common/sa1111.c b/arch/arm/common/sa1111.c index 38c2eb667eb9..1a47fbf9cbbc 100644 --- a/arch/arm/common/sa1111.c +++ b/arch/arm/common/sa1111.c | |||
@@ -268,8 +268,8 @@ static struct irqchip sa1111_low_chip = { | |||
268 | .mask = sa1111_mask_lowirq, | 268 | .mask = sa1111_mask_lowirq, |
269 | .unmask = sa1111_unmask_lowirq, | 269 | .unmask = sa1111_unmask_lowirq, |
270 | .retrigger = sa1111_retrigger_lowirq, | 270 | .retrigger = sa1111_retrigger_lowirq, |
271 | .type = sa1111_type_lowirq, | 271 | .set_type = sa1111_type_lowirq, |
272 | .wake = sa1111_wake_lowirq, | 272 | .set_wake = sa1111_wake_lowirq, |
273 | }; | 273 | }; |
274 | 274 | ||
275 | static void sa1111_mask_highirq(unsigned int irq) | 275 | static void sa1111_mask_highirq(unsigned int irq) |
@@ -364,8 +364,8 @@ static struct irqchip sa1111_high_chip = { | |||
364 | .mask = sa1111_mask_highirq, | 364 | .mask = sa1111_mask_highirq, |
365 | .unmask = sa1111_unmask_highirq, | 365 | .unmask = sa1111_unmask_highirq, |
366 | .retrigger = sa1111_retrigger_highirq, | 366 | .retrigger = sa1111_retrigger_highirq, |
367 | .type = sa1111_type_highirq, | 367 | .set_type = sa1111_type_highirq, |
368 | .wake = sa1111_wake_highirq, | 368 | .set_wake = sa1111_wake_highirq, |
369 | }; | 369 | }; |
370 | 370 | ||
371 | static void sa1111_setup_irq(struct sa1111 *sachip) | 371 | static void sa1111_setup_irq(struct sa1111 *sachip) |