Commit 2958a489 authored by Michael Opdenacker's avatar Michael Opdenacker Committed by Thomas Gleixner

ia64: Remove deprecated IRQF_DISABLED

This patch removes the IRQF_DISABLED flag from ia64 architecture
code. It's a NOOP since 2.6.35 and it will be removed one day.
Signed-off-by: default avatarMichael Opdenacker <michael.opdenacker@free-electrons.com>
Cc: paul.gortmaker@windriver.com
Cc: viro@zeniv.linux.org.uk
Cc: srivatsa.bhat@linux.vnet.ibm.com
Cc: andriy.shevchenko@linux.intel.com
Cc: fenghua.yu@intel.com
Cc: tony.luck@intel.com
Link: http://lkml.kernel.org/r/1393964953-17002-1-git-send-email-michael.opdenacker@free-electrons.comSigned-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent b58d971d
...@@ -364,7 +364,6 @@ static irqreturn_t smp_irq_move_cleanup_interrupt(int irq, void *dev_id) ...@@ -364,7 +364,6 @@ static irqreturn_t smp_irq_move_cleanup_interrupt(int irq, void *dev_id)
static struct irqaction irq_move_irqaction = { static struct irqaction irq_move_irqaction = {
.handler = smp_irq_move_cleanup_interrupt, .handler = smp_irq_move_cleanup_interrupt,
.flags = IRQF_DISABLED,
.name = "irq_move" .name = "irq_move"
}; };
...@@ -600,7 +599,6 @@ static irqreturn_t dummy_handler (int irq, void *dev_id) ...@@ -600,7 +599,6 @@ static irqreturn_t dummy_handler (int irq, void *dev_id)
static struct irqaction ipi_irqaction = { static struct irqaction ipi_irqaction = {
.handler = handle_IPI, .handler = handle_IPI,
.flags = IRQF_DISABLED,
.name = "IPI" .name = "IPI"
}; };
...@@ -609,13 +607,11 @@ static struct irqaction ipi_irqaction = { ...@@ -609,13 +607,11 @@ static struct irqaction ipi_irqaction = {
*/ */
static struct irqaction resched_irqaction = { static struct irqaction resched_irqaction = {
.handler = dummy_handler, .handler = dummy_handler,
.flags = IRQF_DISABLED,
.name = "resched" .name = "resched"
}; };
static struct irqaction tlb_irqaction = { static struct irqaction tlb_irqaction = {
.handler = dummy_handler, .handler = dummy_handler,
.flags = IRQF_DISABLED,
.name = "tlb_flush" .name = "tlb_flush"
}; };
......
...@@ -1772,38 +1772,32 @@ __setup("disable_cpe_poll", ia64_mca_disable_cpe_polling); ...@@ -1772,38 +1772,32 @@ __setup("disable_cpe_poll", ia64_mca_disable_cpe_polling);
static struct irqaction cmci_irqaction = { static struct irqaction cmci_irqaction = {
.handler = ia64_mca_cmc_int_handler, .handler = ia64_mca_cmc_int_handler,
.flags = IRQF_DISABLED,
.name = "cmc_hndlr" .name = "cmc_hndlr"
}; };
static struct irqaction cmcp_irqaction = { static struct irqaction cmcp_irqaction = {
.handler = ia64_mca_cmc_int_caller, .handler = ia64_mca_cmc_int_caller,
.flags = IRQF_DISABLED,
.name = "cmc_poll" .name = "cmc_poll"
}; };
static struct irqaction mca_rdzv_irqaction = { static struct irqaction mca_rdzv_irqaction = {
.handler = ia64_mca_rendez_int_handler, .handler = ia64_mca_rendez_int_handler,
.flags = IRQF_DISABLED,
.name = "mca_rdzv" .name = "mca_rdzv"
}; };
static struct irqaction mca_wkup_irqaction = { static struct irqaction mca_wkup_irqaction = {
.handler = ia64_mca_wakeup_int_handler, .handler = ia64_mca_wakeup_int_handler,
.flags = IRQF_DISABLED,
.name = "mca_wkup" .name = "mca_wkup"
}; };
#ifdef CONFIG_ACPI #ifdef CONFIG_ACPI
static struct irqaction mca_cpe_irqaction = { static struct irqaction mca_cpe_irqaction = {
.handler = ia64_mca_cpe_int_handler, .handler = ia64_mca_cpe_int_handler,
.flags = IRQF_DISABLED,
.name = "cpe_hndlr" .name = "cpe_hndlr"
}; };
static struct irqaction mca_cpep_irqaction = { static struct irqaction mca_cpep_irqaction = {
.handler = ia64_mca_cpe_int_caller, .handler = ia64_mca_cpe_int_caller,
.flags = IRQF_DISABLED,
.name = "cpe_poll" .name = "cpe_poll"
}; };
#endif /* CONFIG_ACPI */ #endif /* CONFIG_ACPI */
......
...@@ -6387,7 +6387,6 @@ pfm_flush_pmds(struct task_struct *task, pfm_context_t *ctx) ...@@ -6387,7 +6387,6 @@ pfm_flush_pmds(struct task_struct *task, pfm_context_t *ctx)
static struct irqaction perfmon_irqaction = { static struct irqaction perfmon_irqaction = {
.handler = pfm_interrupt_handler, .handler = pfm_interrupt_handler,
.flags = IRQF_DISABLED,
.name = "perfmon" .name = "perfmon"
}; };
......
...@@ -380,7 +380,7 @@ static cycle_t itc_get_cycles(struct clocksource *cs) ...@@ -380,7 +380,7 @@ static cycle_t itc_get_cycles(struct clocksource *cs)
static struct irqaction timer_irqaction = { static struct irqaction timer_irqaction = {
.handler = timer_interrupt, .handler = timer_interrupt,
.flags = IRQF_DISABLED | IRQF_IRQPOLL, .flags = IRQF_IRQPOLL,
.name = "timer" .name = "timer"
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment