Commit 322a126a authored by Michael Opdenacker's avatar Michael Opdenacker Committed by Thomas Gleixner

mn10300: Remove deprecated IRQF_DISABLED

This patch removes the IRQF_DISABLED flag from mn10300 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: srivatsa.bhat@linux.vnet.ibm.com
Cc: linux-am33-list@redhat.com
Cc: dhowells@redhat.com
Cc: yasutake.koichi@jp.panasonic.com
Link: http://lkml.kernel.org/r/1393965111-17092-1-git-send-email-michael.opdenacker@free-electrons.comSigned-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 2958a489
...@@ -113,7 +113,7 @@ int __init init_clockevents(void) ...@@ -113,7 +113,7 @@ int __init init_clockevents(void)
cd->set_next_event = next_event; cd->set_next_event = next_event;
iact = &per_cpu(timer_irq, cpu); iact = &per_cpu(timer_irq, cpu);
iact->flags = IRQF_DISABLED | IRQF_SHARED | IRQF_TIMER; iact->flags = IRQF_SHARED | IRQF_TIMER;
iact->handler = timer_interrupt; iact->handler = timer_interrupt;
clockevents_register_device(cd); clockevents_register_device(cd);
......
...@@ -985,17 +985,17 @@ static int mn10300_serial_startup(struct uart_port *_port) ...@@ -985,17 +985,17 @@ static int mn10300_serial_startup(struct uart_port *_port)
irq_set_chip(port->tm_irq, &mn10300_serial_pic); irq_set_chip(port->tm_irq, &mn10300_serial_pic);
if (request_irq(port->rx_irq, mn10300_serial_interrupt, if (request_irq(port->rx_irq, mn10300_serial_interrupt,
IRQF_DISABLED | IRQF_NOBALANCING, IRQF_NOBALANCING,
port->rx_name, port) < 0) port->rx_name, port) < 0)
goto error; goto error;
if (request_irq(port->tx_irq, mn10300_serial_interrupt, if (request_irq(port->tx_irq, mn10300_serial_interrupt,
IRQF_DISABLED | IRQF_NOBALANCING, IRQF_NOBALANCING,
port->tx_name, port) < 0) port->tx_name, port) < 0)
goto error2; goto error2;
if (request_irq(port->tm_irq, mn10300_serial_interrupt, if (request_irq(port->tm_irq, mn10300_serial_interrupt,
IRQF_DISABLED | IRQF_NOBALANCING, IRQF_NOBALANCING,
port->tm_name, port) < 0) port->tm_name, port) < 0)
goto error3; goto error3;
mn10300_serial_mask_ack(port->tm_irq); mn10300_serial_mask_ack(port->tm_irq);
......
...@@ -143,7 +143,7 @@ static struct irqaction call_function_ipi = { ...@@ -143,7 +143,7 @@ static struct irqaction call_function_ipi = {
static irqreturn_t smp_ipi_timer_interrupt(int irq, void *dev_id); static irqreturn_t smp_ipi_timer_interrupt(int irq, void *dev_id);
static struct irqaction local_timer_ipi = { static struct irqaction local_timer_ipi = {
.handler = smp_ipi_timer_interrupt, .handler = smp_ipi_timer_interrupt,
.flags = IRQF_DISABLED | IRQF_NOBALANCING, .flags = IRQF_NOBALANCING,
.name = "smp local timer IPI" .name = "smp local timer IPI"
}; };
#endif #endif
......
...@@ -76,7 +76,7 @@ static irqreturn_t fpga_interrupt(int irq, void *_mask) ...@@ -76,7 +76,7 @@ static irqreturn_t fpga_interrupt(int irq, void *_mask)
static struct irqaction fpga_irq[] = { static struct irqaction fpga_irq[] = {
[0] = { [0] = {
.handler = fpga_interrupt, .handler = fpga_interrupt,
.flags = IRQF_DISABLED | IRQF_SHARED, .flags = IRQF_SHARED,
.name = "fpga", .name = "fpga",
}, },
}; };
......
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