aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/kernel
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2006-07-01 22:29:17 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-07-02 16:58:47 -0400
commit121a4226e89aae6654d667d58ab72df740b97b92 (patch)
tree906a351589bd914dec718a106291cf856a13fcb2 /arch/ia64/kernel
parent4879d77c4c2fdc81ba1ff0ad56fa41b3676d0472 (diff)
[PATCH] irq-flags: IA64: 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> Cc: "Luck, Tony" <tony.luck@intel.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/ia64/kernel')
-rw-r--r--arch/ia64/kernel/irq_ia64.c2
-rw-r--r--arch/ia64/kernel/mca.c12
-rw-r--r--arch/ia64/kernel/perfmon.c2
-rw-r--r--arch/ia64/kernel/time.c2
4 files changed, 9 insertions, 9 deletions
diff --git a/arch/ia64/kernel/irq_ia64.c b/arch/ia64/kernel/irq_ia64.c
index 3e6fcb056bcb..a041367f043b 100644
--- a/arch/ia64/kernel/irq_ia64.c
+++ b/arch/ia64/kernel/irq_ia64.c
@@ -235,7 +235,7 @@ extern irqreturn_t handle_IPI (int irq, void *dev_id, struct pt_regs *regs);
235 235
236static struct irqaction ipi_irqaction = { 236static struct irqaction ipi_irqaction = {
237 .handler = handle_IPI, 237 .handler = handle_IPI,
238 .flags = SA_INTERRUPT, 238 .flags = IRQF_DISABLED,
239 .name = "IPI" 239 .name = "IPI"
240}; 240};
241#endif 241#endif
diff --git a/arch/ia64/kernel/mca.c b/arch/ia64/kernel/mca.c
index 584df1772845..eb8e8dc5ac8e 100644
--- a/arch/ia64/kernel/mca.c
+++ b/arch/ia64/kernel/mca.c
@@ -1457,38 +1457,38 @@ __setup("disable_cpe_poll", ia64_mca_disable_cpe_polling);
1457 1457
1458static struct irqaction cmci_irqaction = { 1458static struct irqaction cmci_irqaction = {
1459 .handler = ia64_mca_cmc_int_handler, 1459 .handler = ia64_mca_cmc_int_handler,
1460 .flags = SA_INTERRUPT, 1460 .flags = IRQF_DISABLED,
1461 .name = "cmc_hndlr" 1461 .name = "cmc_hndlr"
1462}; 1462};
1463 1463
1464static struct irqaction cmcp_irqaction = { 1464static struct irqaction cmcp_irqaction = {
1465 .handler = ia64_mca_cmc_int_caller, 1465 .handler = ia64_mca_cmc_int_caller,
1466 .flags = SA_INTERRUPT, 1466 .flags = IRQF_DISABLED,
1467 .name = "cmc_poll" 1467 .name = "cmc_poll"
1468}; 1468};
1469 1469
1470static struct irqaction mca_rdzv_irqaction = { 1470static struct irqaction mca_rdzv_irqaction = {
1471 .handler = ia64_mca_rendez_int_handler, 1471 .handler = ia64_mca_rendez_int_handler,
1472 .flags = SA_INTERRUPT, 1472 .flags = IRQF_DISABLED,
1473 .name = "mca_rdzv" 1473 .name = "mca_rdzv"
1474}; 1474};
1475 1475
1476static struct irqaction mca_wkup_irqaction = { 1476static struct irqaction mca_wkup_irqaction = {
1477 .handler = ia64_mca_wakeup_int_handler, 1477 .handler = ia64_mca_wakeup_int_handler,
1478 .flags = SA_INTERRUPT, 1478 .flags = IRQF_DISABLED,
1479 .name = "mca_wkup" 1479 .name = "mca_wkup"
1480}; 1480};
1481 1481
1482#ifdef CONFIG_ACPI 1482#ifdef CONFIG_ACPI
1483static struct irqaction mca_cpe_irqaction = { 1483static struct irqaction mca_cpe_irqaction = {
1484 .handler = ia64_mca_cpe_int_handler, 1484 .handler = ia64_mca_cpe_int_handler,
1485 .flags = SA_INTERRUPT, 1485 .flags = IRQF_DISABLED,
1486 .name = "cpe_hndlr" 1486 .name = "cpe_hndlr"
1487}; 1487};
1488 1488
1489static struct irqaction mca_cpep_irqaction = { 1489static struct irqaction mca_cpep_irqaction = {
1490 .handler = ia64_mca_cpe_int_caller, 1490 .handler = ia64_mca_cpe_int_caller,
1491 .flags = SA_INTERRUPT, 1491 .flags = IRQF_DISABLED,
1492 .name = "cpe_poll" 1492 .name = "cpe_poll"
1493}; 1493};
1494#endif /* CONFIG_ACPI */ 1494#endif /* CONFIG_ACPI */
diff --git a/arch/ia64/kernel/perfmon.c b/arch/ia64/kernel/perfmon.c
index 92b815d13418..c7ccd6ee1ddf 100644
--- a/arch/ia64/kernel/perfmon.c
+++ b/arch/ia64/kernel/perfmon.c
@@ -6439,7 +6439,7 @@ pfm_flush_pmds(struct task_struct *task, pfm_context_t *ctx)
6439 6439
6440static struct irqaction perfmon_irqaction = { 6440static struct irqaction perfmon_irqaction = {
6441 .handler = pfm_interrupt_handler, 6441 .handler = pfm_interrupt_handler,
6442 .flags = SA_INTERRUPT, 6442 .flags = IRQF_DISABLED,
6443 .name = "perfmon" 6443 .name = "perfmon"
6444}; 6444};
6445 6445
diff --git a/arch/ia64/kernel/time.c b/arch/ia64/kernel/time.c
index 71ccddabc715..6928ef0d64d8 100644
--- a/arch/ia64/kernel/time.c
+++ b/arch/ia64/kernel/time.c
@@ -231,7 +231,7 @@ ia64_init_itm (void)
231 231
232static struct irqaction timer_irqaction = { 232static struct irqaction timer_irqaction = {
233 .handler = timer_interrupt, 233 .handler = timer_interrupt,
234 .flags = SA_INTERRUPT, 234 .flags = IRQF_DISABLED,
235 .name = "timer" 235 .name = "timer"
236}; 236};
237 237