diff options
| -rw-r--r-- | arch/blackfin/kernel/time-ts.c | 6 | ||||
| -rw-r--r-- | arch/blackfin/kernel/time.c | 1 | ||||
| -rw-r--r-- | arch/blackfin/mach-bf537/boards/cm_bf537e.c | 2 | ||||
| -rw-r--r-- | arch/blackfin/mach-bf537/boards/cm_bf537u.c | 2 | ||||
| -rw-r--r-- | arch/blackfin/mach-bf537/boards/stamp.c | 2 | ||||
| -rw-r--r-- | arch/blackfin/mach-bf537/boards/tcm_bf537.c | 2 | ||||
| -rw-r--r-- | arch/blackfin/mach-bf561/boards/cm_bf561.c | 2 | ||||
| -rw-r--r-- | arch/blackfin/mach-bf561/smp.c | 2 |
8 files changed, 8 insertions, 11 deletions
diff --git a/arch/blackfin/kernel/time-ts.c b/arch/blackfin/kernel/time-ts.c index 9e9b60d969dc..1bcf3a3c57d8 100644 --- a/arch/blackfin/kernel/time-ts.c +++ b/arch/blackfin/kernel/time-ts.c | |||
| @@ -188,8 +188,7 @@ irqreturn_t bfin_gptmr0_interrupt(int irq, void *dev_id) | |||
| 188 | 188 | ||
| 189 | static struct irqaction gptmr0_irq = { | 189 | static struct irqaction gptmr0_irq = { |
| 190 | .name = "Blackfin GPTimer0", | 190 | .name = "Blackfin GPTimer0", |
| 191 | .flags = IRQF_DISABLED | IRQF_TIMER | \ | 191 | .flags = IRQF_TIMER | IRQF_IRQPOLL | IRQF_PERCPU, |
| 192 | IRQF_IRQPOLL | IRQF_PERCPU, | ||
| 193 | .handler = bfin_gptmr0_interrupt, | 192 | .handler = bfin_gptmr0_interrupt, |
| 194 | }; | 193 | }; |
| 195 | 194 | ||
| @@ -297,8 +296,7 @@ irqreturn_t bfin_coretmr_interrupt(int irq, void *dev_id) | |||
| 297 | 296 | ||
| 298 | static struct irqaction coretmr_irq = { | 297 | static struct irqaction coretmr_irq = { |
| 299 | .name = "Blackfin CoreTimer", | 298 | .name = "Blackfin CoreTimer", |
| 300 | .flags = IRQF_DISABLED | IRQF_TIMER | \ | 299 | .flags = IRQF_TIMER | IRQF_IRQPOLL | IRQF_PERCPU, |
| 301 | IRQF_IRQPOLL | IRQF_PERCPU, | ||
| 302 | .handler = bfin_coretmr_interrupt, | 300 | .handler = bfin_coretmr_interrupt, |
| 303 | }; | 301 | }; |
| 304 | 302 | ||
diff --git a/arch/blackfin/kernel/time.c b/arch/blackfin/kernel/time.c index ceb2bf63dfe2..2310b249675f 100644 --- a/arch/blackfin/kernel/time.c +++ b/arch/blackfin/kernel/time.c | |||
| @@ -25,7 +25,6 @@ | |||
| 25 | 25 | ||
| 26 | static struct irqaction bfin_timer_irq = { | 26 | static struct irqaction bfin_timer_irq = { |
| 27 | .name = "Blackfin Timer Tick", | 27 | .name = "Blackfin Timer Tick", |
| 28 | .flags = IRQF_DISABLED | ||
| 29 | }; | 28 | }; |
| 30 | 29 | ||
| 31 | #if defined(CONFIG_IPIPE) | 30 | #if defined(CONFIG_IPIPE) |
diff --git a/arch/blackfin/mach-bf537/boards/cm_bf537e.c b/arch/blackfin/mach-bf537/boards/cm_bf537e.c index 44fd8409db10..9fb20d6d8f91 100644 --- a/arch/blackfin/mach-bf537/boards/cm_bf537e.c +++ b/arch/blackfin/mach-bf537/boards/cm_bf537e.c | |||
| @@ -605,7 +605,7 @@ static struct platform_device bfin_mac_device = { | |||
| 605 | 605 | ||
| 606 | static struct pata_platform_info bfin_pata_platform_data = { | 606 | static struct pata_platform_info bfin_pata_platform_data = { |
| 607 | .ioport_shift = 2, | 607 | .ioport_shift = 2, |
| 608 | .irq_type = IRQF_TRIGGER_HIGH | IRQF_DISABLED, | 608 | .irq_type = IRQF_TRIGGER_HIGH, |
| 609 | }; | 609 | }; |
| 610 | 610 | ||
| 611 | static struct resource bfin_pata_resources[] = { | 611 | static struct resource bfin_pata_resources[] = { |
diff --git a/arch/blackfin/mach-bf537/boards/cm_bf537u.c b/arch/blackfin/mach-bf537/boards/cm_bf537u.c index 1b4ac5c64aae..5ba389fc61ae 100644 --- a/arch/blackfin/mach-bf537/boards/cm_bf537u.c +++ b/arch/blackfin/mach-bf537/boards/cm_bf537u.c | |||
| @@ -570,7 +570,7 @@ static struct platform_device bfin_mac_device = { | |||
| 570 | 570 | ||
| 571 | static struct pata_platform_info bfin_pata_platform_data = { | 571 | static struct pata_platform_info bfin_pata_platform_data = { |
| 572 | .ioport_shift = 2, | 572 | .ioport_shift = 2, |
| 573 | .irq_type = IRQF_TRIGGER_HIGH | IRQF_DISABLED, | 573 | .irq_type = IRQF_TRIGGER_HIGH, |
| 574 | }; | 574 | }; |
| 575 | 575 | ||
| 576 | static struct resource bfin_pata_resources[] = { | 576 | static struct resource bfin_pata_resources[] = { |
diff --git a/arch/blackfin/mach-bf537/boards/stamp.c b/arch/blackfin/mach-bf537/boards/stamp.c index 00a51ce0f0c2..6c916a67ef68 100644 --- a/arch/blackfin/mach-bf537/boards/stamp.c +++ b/arch/blackfin/mach-bf537/boards/stamp.c | |||
| @@ -2365,7 +2365,7 @@ static struct platform_device bfin_sport1_uart_device = { | |||
| 2365 | #define PATA_INT IRQ_PF5 | 2365 | #define PATA_INT IRQ_PF5 |
| 2366 | static struct pata_platform_info bfin_pata_platform_data = { | 2366 | static struct pata_platform_info bfin_pata_platform_data = { |
| 2367 | .ioport_shift = 1, | 2367 | .ioport_shift = 1, |
| 2368 | .irq_flags = IRQF_TRIGGER_HIGH | IRQF_DISABLED, | 2368 | .irq_flags = IRQF_TRIGGER_HIGH, |
| 2369 | }; | 2369 | }; |
| 2370 | 2370 | ||
| 2371 | static struct resource bfin_pata_resources[] = { | 2371 | static struct resource bfin_pata_resources[] = { |
diff --git a/arch/blackfin/mach-bf537/boards/tcm_bf537.c b/arch/blackfin/mach-bf537/boards/tcm_bf537.c index 9b7287abdfa1..2da0316d890e 100644 --- a/arch/blackfin/mach-bf537/boards/tcm_bf537.c +++ b/arch/blackfin/mach-bf537/boards/tcm_bf537.c | |||
| @@ -572,7 +572,7 @@ static struct platform_device bfin_mac_device = { | |||
| 572 | 572 | ||
| 573 | static struct pata_platform_info bfin_pata_platform_data = { | 573 | static struct pata_platform_info bfin_pata_platform_data = { |
| 574 | .ioport_shift = 2, | 574 | .ioport_shift = 2, |
| 575 | .irq_type = IRQF_TRIGGER_HIGH | IRQF_DISABLED, | 575 | .irq_type = IRQF_TRIGGER_HIGH, |
| 576 | }; | 576 | }; |
| 577 | 577 | ||
| 578 | static struct resource bfin_pata_resources[] = { | 578 | static struct resource bfin_pata_resources[] = { |
diff --git a/arch/blackfin/mach-bf561/boards/cm_bf561.c b/arch/blackfin/mach-bf561/boards/cm_bf561.c index e4f397d1d65b..c1b72f2d6354 100644 --- a/arch/blackfin/mach-bf561/boards/cm_bf561.c +++ b/arch/blackfin/mach-bf561/boards/cm_bf561.c | |||
| @@ -348,7 +348,7 @@ static struct platform_device bfin_sir0_device = { | |||
| 348 | 348 | ||
| 349 | static struct pata_platform_info bfin_pata_platform_data = { | 349 | static struct pata_platform_info bfin_pata_platform_data = { |
| 350 | .ioport_shift = 2, | 350 | .ioport_shift = 2, |
| 351 | .irq_type = IRQF_TRIGGER_HIGH | IRQF_DISABLED, | 351 | .irq_type = IRQF_TRIGGER_HIGH, |
| 352 | }; | 352 | }; |
| 353 | 353 | ||
| 354 | static struct resource bfin_pata_resources[] = { | 354 | static struct resource bfin_pata_resources[] = { |
diff --git a/arch/blackfin/mach-bf561/smp.c b/arch/blackfin/mach-bf561/smp.c index 85abd8be1343..db22401e7605 100644 --- a/arch/blackfin/mach-bf561/smp.c +++ b/arch/blackfin/mach-bf561/smp.c | |||
| @@ -114,7 +114,7 @@ void __init platform_request_ipi(int irq, void *handler) | |||
| 114 | int ret; | 114 | int ret; |
| 115 | const char *name = (irq == IRQ_SUPPLE_0) ? supple0 : supple1; | 115 | const char *name = (irq == IRQ_SUPPLE_0) ? supple0 : supple1; |
| 116 | 116 | ||
| 117 | ret = request_irq(irq, handler, IRQF_DISABLED | IRQF_PERCPU, name, handler); | 117 | ret = request_irq(irq, handler, IRQF_PERCPU, name, handler); |
| 118 | if (ret) | 118 | if (ret) |
| 119 | panic("Cannot request %s for IPI service", name); | 119 | panic("Cannot request %s for IPI service", name); |
| 120 | } | 120 | } |
