aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh64/mach-cayman
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2006-07-01 22:29:24 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-07-02 16:58:48 -0400
commit5fb55ae955cee254f9e3b45636266a4855bb88a5 (patch)
tree26a41aed39c7476ca06bb2fe697b6c662f7d9427 /arch/sh64/mach-cayman
parentdacdb3b23a918d52ff52708b25d6d45dab7ea14b (diff)
[PATCH] irq-flags: SH64: Use the new IRQF_ constants
Use the new IRQF_ constants and remove the SA_INTERRUPT define Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@elte.hu> Cc: "David S. Miller" <davem@davemloft.net> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/sh64/mach-cayman')
-rw-r--r--arch/sh64/mach-cayman/irq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh64/mach-cayman/irq.c b/arch/sh64/mach-cayman/irq.c
index cac94219dd5f..228ce61c3515 100644
--- a/arch/sh64/mach-cayman/irq.c
+++ b/arch/sh64/mach-cayman/irq.c
@@ -44,13 +44,13 @@ static irqreturn_t cayman_interrupt_pci2(int irq, void *dev_id, struct pt_regs *
44static struct irqaction cayman_action_smsc = { 44static struct irqaction cayman_action_smsc = {
45 .name = "Cayman SMSC Mux", 45 .name = "Cayman SMSC Mux",
46 .handler = cayman_interrupt_smsc, 46 .handler = cayman_interrupt_smsc,
47 .flags = SA_INTERRUPT, 47 .flags = IRQF_DISABLED,
48}; 48};
49 49
50static struct irqaction cayman_action_pci2 = { 50static struct irqaction cayman_action_pci2 = {
51 .name = "Cayman PCI2 Mux", 51 .name = "Cayman PCI2 Mux",
52 .handler = cayman_interrupt_pci2, 52 .handler = cayman_interrupt_pci2,
53 .flags = SA_INTERRUPT, 53 .flags = IRQF_DISABLED,
54}; 54};
55 55
56static void enable_cayman_irq(unsigned int irq) 56static void enable_cayman_irq(unsigned int irq)