linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag
@ 2013-12-30 16:09 Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 02/17] ARM: ixp4xx: " Daniel Lezcano
                   ` (16 more replies)
  0 siblings, 17 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-spear/time.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-spear/time.c b/arch/arm/mach-spear/time.c
index d449673..218ba5b 100644
--- a/arch/arm/mach-spear/time.c
+++ b/arch/arm/mach-spear/time.c
@@ -172,7 +172,7 @@ static irqreturn_t spear_timer_interrupt(int irq, void *dev_id)
 
 static struct irqaction spear_timer_irq = {
 	.name = "timer",
-	.flags = IRQF_DISABLED | IRQF_TIMER,
+	.flags = IRQF_TIMER,
 	.handler = spear_timer_interrupt
 };
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 02/17] ARM: ixp4xx: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 03/17] ARM: sa1100: " Daniel Lezcano
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-ixp4xx/common.c        |    2 +-
 arch/arm/mach-ixp4xx/dsmg600-setup.c |    3 +--
 arch/arm/mach-ixp4xx/fsg-setup.c     |    6 ++----
 arch/arm/mach-ixp4xx/nas100d-setup.c |    3 +--
 arch/arm/mach-ixp4xx/nslu2-setup.c   |    6 ++----
 5 files changed, 7 insertions(+), 13 deletions(-)

diff --git a/arch/arm/mach-ixp4xx/common.c b/arch/arm/mach-ixp4xx/common.c
index bc9d8ec..0bf5258 100644
--- a/arch/arm/mach-ixp4xx/common.c
+++ b/arch/arm/mach-ixp4xx/common.c
@@ -312,7 +312,7 @@ static irqreturn_t ixp4xx_timer_interrupt(int irq, void *dev_id)
 
 static struct irqaction ixp4xx_timer_irq = {
 	.name		= "timer1",
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.handler	= ixp4xx_timer_interrupt,
 	.dev_id		= &clockevent_ixp4xx,
 };
diff --git a/arch/arm/mach-ixp4xx/dsmg600-setup.c b/arch/arm/mach-ixp4xx/dsmg600-setup.c
index 736dc69..43ee06d 100644
--- a/arch/arm/mach-ixp4xx/dsmg600-setup.c
+++ b/arch/arm/mach-ixp4xx/dsmg600-setup.c
@@ -233,8 +233,7 @@ static int __init dsmg600_gpio_init(void)
 
 	gpio_request(DSMG600_RB_GPIO, "reset button");
 	if (request_irq(gpio_to_irq(DSMG600_RB_GPIO), &dsmg600_reset_handler,
-		IRQF_DISABLED | IRQF_TRIGGER_LOW,
-		"DSM-G600 reset button", NULL) < 0) {
+		IRQF_TRIGGER_LOW, "DSM-G600 reset button", NULL) < 0) {
 
 		printk(KERN_DEBUG "Reset Button IRQ %d not available\n",
 			gpio_to_irq(DSMG600_RB_GPIO));
diff --git a/arch/arm/mach-ixp4xx/fsg-setup.c b/arch/arm/mach-ixp4xx/fsg-setup.c
index 429966b7..5c4b0c4 100644
--- a/arch/arm/mach-ixp4xx/fsg-setup.c
+++ b/arch/arm/mach-ixp4xx/fsg-setup.c
@@ -208,16 +208,14 @@ static void __init fsg_init(void)
 	platform_add_devices(fsg_devices, ARRAY_SIZE(fsg_devices));
 
 	if (request_irq(gpio_to_irq(FSG_RB_GPIO), &fsg_reset_handler,
-			IRQF_DISABLED | IRQF_TRIGGER_LOW,
-			"FSG reset button", NULL) < 0) {
+			IRQF_TRIGGER_LOW, "FSG reset button", NULL) < 0) {
 
 		printk(KERN_DEBUG "Reset Button IRQ %d not available\n",
 			gpio_to_irq(FSG_RB_GPIO));
 	}
 
 	if (request_irq(gpio_to_irq(FSG_SB_GPIO), &fsg_power_handler,
-			IRQF_DISABLED | IRQF_TRIGGER_LOW,
-			"FSG power button", NULL) < 0) {
+			IRQF_TRIGGER_LOW, "FSG power button", NULL) < 0) {
 
 		printk(KERN_DEBUG "Power Button IRQ %d not available\n",
 			gpio_to_irq(FSG_SB_GPIO));
diff --git a/arch/arm/mach-ixp4xx/nas100d-setup.c b/arch/arm/mach-ixp4xx/nas100d-setup.c
index 507cb52..4e0f762 100644
--- a/arch/arm/mach-ixp4xx/nas100d-setup.c
+++ b/arch/arm/mach-ixp4xx/nas100d-setup.c
@@ -295,8 +295,7 @@ static void __init nas100d_init(void)
 	pm_power_off = nas100d_power_off;
 
 	if (request_irq(gpio_to_irq(NAS100D_RB_GPIO), &nas100d_reset_handler,
-		IRQF_DISABLED | IRQF_TRIGGER_LOW,
-		"NAS100D reset button", NULL) < 0) {
+		IRQF_TRIGGER_LOW, "NAS100D reset button", NULL) < 0) {
 
 		printk(KERN_DEBUG "Reset Button IRQ %d not available\n",
 			gpio_to_irq(NAS100D_RB_GPIO));
diff --git a/arch/arm/mach-ixp4xx/nslu2-setup.c b/arch/arm/mach-ixp4xx/nslu2-setup.c
index ba5f1cd..88c025f 100644
--- a/arch/arm/mach-ixp4xx/nslu2-setup.c
+++ b/arch/arm/mach-ixp4xx/nslu2-setup.c
@@ -265,16 +265,14 @@ static void __init nslu2_init(void)
 	pm_power_off = nslu2_power_off;
 
 	if (request_irq(gpio_to_irq(NSLU2_RB_GPIO), &nslu2_reset_handler,
-		IRQF_DISABLED | IRQF_TRIGGER_LOW,
-		"NSLU2 reset button", NULL) < 0) {
+		IRQF_TRIGGER_LOW, "NSLU2 reset button", NULL) < 0) {
 
 		printk(KERN_DEBUG "Reset Button IRQ %d not available\n",
 			gpio_to_irq(NSLU2_RB_GPIO));
 	}
 
 	if (request_irq(gpio_to_irq(NSLU2_PB_GPIO), &nslu2_power_handler,
-		IRQF_DISABLED | IRQF_TRIGGER_HIGH,
-		"NSLU2 power button", NULL) < 0) {
+		IRQF_TRIGGER_HIGH, "NSLU2 power button", NULL) < 0) {
 
 		printk(KERN_DEBUG "Power Button IRQ %d not available\n",
 			gpio_to_irq(NSLU2_PB_GPIO));
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 03/17] ARM: sa1100: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 02/17] ARM: ixp4xx: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 04/17] ARM: mmp: " Daniel Lezcano
                   ` (14 subsequent siblings)
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-sa1100/time.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-sa1100/time.c b/arch/arm/mach-sa1100/time.c
index 6fd4acb..4852c08 100644
--- a/arch/arm/mach-sa1100/time.c
+++ b/arch/arm/mach-sa1100/time.c
@@ -112,7 +112,7 @@ static struct clock_event_device ckevt_sa1100_osmr0 = {
 
 static struct irqaction sa1100_timer_irq = {
 	.name		= "ost0",
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.handler	= sa1100_ost0_interrupt,
 	.dev_id		= &ckevt_sa1100_osmr0,
 };
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 04/17] ARM: mmp: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 02/17] ARM: ixp4xx: " Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 03/17] ARM: sa1100: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 05/17] ARM: " Daniel Lezcano
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-mmp/time.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-mmp/time.c b/arch/arm/mach-mmp/time.c
index 024022d..bbcd232 100644
--- a/arch/arm/mach-mmp/time.c
+++ b/arch/arm/mach-mmp/time.c
@@ -186,7 +186,7 @@ static void __init timer_config(void)
 
 static struct irqaction timer_irq = {
 	.name		= "timer",
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.handler	= timer_interrupt,
 	.dev_id		= &ckevt,
 };
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 05/17] ARM: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
                   ` (2 preceding siblings ...)
  2013-12-30 16:09 ` [PATCH 04/17] ARM: mmp: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 06/17] ARM: cns3xxx: " Daniel Lezcano
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/include/asm/floppy.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/include/asm/floppy.h b/arch/arm/include/asm/floppy.h
index c9f03ec..f488255 100644
--- a/arch/arm/include/asm/floppy.h
+++ b/arch/arm/include/asm/floppy.h
@@ -25,7 +25,7 @@
 
 #define fd_inb(port)		inb((port))
 #define fd_request_irq()	request_irq(IRQ_FLOPPYDISK,floppy_interrupt,\
-					    IRQF_DISABLED,"floppy",NULL)
+					    0,"floppy",NULL)
 #define fd_free_irq()		free_irq(IRQ_FLOPPYDISK,NULL)
 #define fd_disable_irq()	disable_irq(IRQ_FLOPPYDISK)
 #define fd_enable_irq()		enable_irq(IRQ_FLOPPYDISK)
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 06/17] ARM: cns3xxx: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
                   ` (3 preceding siblings ...)
  2013-12-30 16:09 ` [PATCH 05/17] ARM: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 07/17] ARM: footbridge: " Daniel Lezcano
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-cns3xxx/core.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-cns3xxx/core.c b/arch/arm/mach-cns3xxx/core.c
index e38b279..384dc85 100644
--- a/arch/arm/mach-cns3xxx/core.c
+++ b/arch/arm/mach-cns3xxx/core.c
@@ -155,7 +155,7 @@ static irqreturn_t cns3xxx_timer_interrupt(int irq, void *dev_id)
 
 static struct irqaction cns3xxx_timer_irq = {
 	.name		= "timer",
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.handler	= cns3xxx_timer_interrupt,
 };
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 07/17] ARM: footbridge: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
                   ` (4 preceding siblings ...)
  2013-12-30 16:09 ` [PATCH 06/17] ARM: cns3xxx: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 08/17] ARM: ks8695: " Daniel Lezcano
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-footbridge/dc21285-timer.c |    2 +-
 arch/arm/mach-footbridge/dc21285.c       |   10 +++++-----
 arch/arm/mach-footbridge/isa-timer.c     |    2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/arch/arm/mach-footbridge/dc21285-timer.c b/arch/arm/mach-footbridge/dc21285-timer.c
index 9ee78f7..892d550 100644
--- a/arch/arm/mach-footbridge/dc21285-timer.c
+++ b/arch/arm/mach-footbridge/dc21285-timer.c
@@ -86,7 +86,7 @@ static irqreturn_t timer1_interrupt(int irq, void *dev_id)
 static struct irqaction footbridge_timer_irq = {
 	.name		= "dc21285_timer1",
 	.handler	= timer1_interrupt,
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.dev_id		= &ckevt_dc21285,
 };
 
diff --git a/arch/arm/mach-footbridge/dc21285.c b/arch/arm/mach-footbridge/dc21285.c
index 7c2fdae..96a3d73 100644
--- a/arch/arm/mach-footbridge/dc21285.c
+++ b/arch/arm/mach-footbridge/dc21285.c
@@ -334,15 +334,15 @@ void __init dc21285_preinit(void)
 	/*
 	 * We don't care if these fail.
 	 */
-	dc21285_request_irq(IRQ_PCI_SERR, dc21285_serr_irq, IRQF_DISABLED,
+	dc21285_request_irq(IRQ_PCI_SERR, dc21285_serr_irq, 0,
 			    "PCI system error", &serr_timer);
-	dc21285_request_irq(IRQ_PCI_PERR, dc21285_parity_irq, IRQF_DISABLED,
+	dc21285_request_irq(IRQ_PCI_PERR, dc21285_parity_irq, 0,
 			    "PCI parity error", &perr_timer);
-	dc21285_request_irq(IRQ_PCI_ABORT, dc21285_abort_irq, IRQF_DISABLED,
+	dc21285_request_irq(IRQ_PCI_ABORT, dc21285_abort_irq, 0,
 			    "PCI abort", NULL);
-	dc21285_request_irq(IRQ_DISCARD_TIMER, dc21285_discard_irq, IRQF_DISABLED,
+	dc21285_request_irq(IRQ_DISCARD_TIMER, dc21285_discard_irq, 0,
 			    "Discard timer", NULL);
-	dc21285_request_irq(IRQ_PCI_DPERR, dc21285_dparity_irq, IRQF_DISABLED,
+	dc21285_request_irq(IRQ_PCI_DPERR, dc21285_dparity_irq, 0,
 			    "PCI data parity", NULL);
 
 	if (cfn_mode) {
diff --git a/arch/arm/mach-footbridge/isa-timer.c b/arch/arm/mach-footbridge/isa-timer.c
index d9301dd..b73f52e 100644
--- a/arch/arm/mach-footbridge/isa-timer.c
+++ b/arch/arm/mach-footbridge/isa-timer.c
@@ -27,7 +27,7 @@ static irqreturn_t pit_timer_interrupt(int irq, void *dev_id)
 static struct irqaction pit_timer_irq = {
 	.name		= "pit",
 	.handler	= pit_timer_interrupt,
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.dev_id		= &i8253_clockevent,
 };
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 08/17] ARM: ks8695: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
                   ` (5 preceding siblings ...)
  2013-12-30 16:09 ` [PATCH 07/17] ARM: footbridge: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 09/17] ARM: u300: " Daniel Lezcano
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-ks8695/time.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-ks8695/time.c b/arch/arm/mach-ks8695/time.c
index 426c976..a197874 100644
--- a/arch/arm/mach-ks8695/time.c
+++ b/arch/arm/mach-ks8695/time.c
@@ -122,7 +122,7 @@ static irqreturn_t ks8695_timer_interrupt(int irq, void *dev_id)
 
 static struct irqaction ks8695_timer_irq = {
 	.name		= "ks8695_tick",
-	.flags		= IRQF_DISABLED | IRQF_TIMER,
+	.flags		= IRQF_TIMER,
 	.handler	= ks8695_timer_interrupt,
 };
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 09/17] ARM: u300: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
                   ` (6 preceding siblings ...)
  2013-12-30 16:09 ` [PATCH 08/17] ARM: ks8695: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 10/17] ARM: rpc: " Daniel Lezcano
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-u300/timer.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-u300/timer.c b/arch/arm/mach-u300/timer.c
index 9724e4e..50d73ae 100644
--- a/arch/arm/mach-u300/timer.c
+++ b/arch/arm/mach-u300/timer.c
@@ -329,7 +329,7 @@ static irqreturn_t u300_timer_interrupt(int irq, void *dev_id)
 
 static struct irqaction u300_timer_irq = {
 	.name		= "U300 Timer Tick",
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.handler	= u300_timer_interrupt,
 };
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 10/17] ARM: rpc: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
                   ` (7 preceding siblings ...)
  2013-12-30 16:09 ` [PATCH 09/17] ARM: u300: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 11/17] ARM: iop: " Daniel Lezcano
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-rpc/dma.c  |    4 ++--
 arch/arm/mach-rpc/time.c |    1 -
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/arch/arm/mach-rpc/dma.c b/arch/arm/mach-rpc/dma.c
index 85883b2..80cc2c7 100644
--- a/arch/arm/mach-rpc/dma.c
+++ b/arch/arm/mach-rpc/dma.c
@@ -140,8 +140,8 @@ static int iomd_request_dma(unsigned int chan, dma_t *dma)
 {
 	struct iomd_dma *idma = container_of(dma, struct iomd_dma, dma);
 
-	return request_irq(idma->irq, iomd_dma_handle,
-			   IRQF_DISABLED, idma->dma.device_id, idma);
+	return request_irq(idma->irq, iomd_dma_handle, 0,
+			   idma->dma.device_id, idma);
 }
 
 static void iomd_free_dma(unsigned int chan, dma_t *dma)
diff --git a/arch/arm/mach-rpc/time.c b/arch/arm/mach-rpc/time.c
index 9a6def1..9a51588 100644
--- a/arch/arm/mach-rpc/time.c
+++ b/arch/arm/mach-rpc/time.c
@@ -75,7 +75,6 @@ ioc_timer_interrupt(int irq, void *dev_id)
 
 static struct irqaction ioc_timer_irq = {
 	.name		= "timer",
-	.flags		= IRQF_DISABLED,
 	.handler	= ioc_timer_interrupt
 };
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 11/17] ARM: iop: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
                   ` (8 preceding siblings ...)
  2013-12-30 16:09 ` [PATCH 10/17] ARM: rpc: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 12/17] ARM: integrator: " Daniel Lezcano
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/plat-iop/time.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/plat-iop/time.c b/arch/arm/plat-iop/time.c
index d70b733..6ad65d8 100644
--- a/arch/arm/plat-iop/time.c
+++ b/arch/arm/plat-iop/time.c
@@ -127,7 +127,7 @@ iop_timer_interrupt(int irq, void *dev_id)
 static struct irqaction iop_timer_irq = {
 	.name		= "IOP Timer Tick",
 	.handler	= iop_timer_interrupt,
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.dev_id		= &iop_clockevent,
 };
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 12/17] ARM: integrator: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
                   ` (9 preceding siblings ...)
  2013-12-30 16:09 ` [PATCH 11/17] ARM: iop: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 13/17] ARM: lpc32xx: " Daniel Lezcano
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-integrator/integrator_ap.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-integrator/integrator_ap.c b/arch/arm/mach-integrator/integrator_ap.c
index 17c0fe6..e4f27f0 100644
--- a/arch/arm/mach-integrator/integrator_ap.c
+++ b/arch/arm/mach-integrator/integrator_ap.c
@@ -358,7 +358,7 @@ static struct clock_event_device integrator_clockevent = {
 
 static struct irqaction integrator_timer_irq = {
 	.name		= "timer",
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.handler	= integrator_timer_interrupt,
 	.dev_id		= &integrator_clockevent,
 };
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 13/17] ARM: lpc32xx: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
                   ` (10 preceding siblings ...)
  2013-12-30 16:09 ` [PATCH 12/17] ARM: integrator: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 14/17] ARM: netx: " Daniel Lezcano
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-lpc32xx/timer.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-lpc32xx/timer.c b/arch/arm/mach-lpc32xx/timer.c
index 20eab63..4e58372 100644
--- a/arch/arm/mach-lpc32xx/timer.c
+++ b/arch/arm/mach-lpc32xx/timer.c
@@ -90,7 +90,7 @@ static irqreturn_t lpc32xx_timer_interrupt(int irq, void *dev_id)
 
 static struct irqaction lpc32xx_timer_irq = {
 	.name		= "LPC32XX Timer Tick",
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.handler	= lpc32xx_timer_interrupt,
 };
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 14/17] ARM: netx: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
                   ` (11 preceding siblings ...)
  2013-12-30 16:09 ` [PATCH 13/17] ARM: lpc32xx: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 15/17] ARM: imx: " Daniel Lezcano
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-netx/time.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-netx/time.c b/arch/arm/mach-netx/time.c
index 6df42e6..3177c7a 100644
--- a/arch/arm/mach-netx/time.c
+++ b/arch/arm/mach-netx/time.c
@@ -99,7 +99,7 @@ netx_timer_interrupt(int irq, void *dev_id)
 
 static struct irqaction netx_timer_irq = {
 	.name		= "NetX Timer Tick",
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.handler	= netx_timer_interrupt,
 };
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 15/17] ARM: imx: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
                   ` (12 preceding siblings ...)
  2013-12-30 16:09 ` [PATCH 14/17] ARM: netx: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 16/17] ARM: ebsa110: " Daniel Lezcano
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-imx/mach-pca100.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/arm/mach-imx/mach-pca100.c b/arch/arm/mach-imx/mach-pca100.c
index c5f9567..a3ab282 100644
--- a/arch/arm/mach-imx/mach-pca100.c
+++ b/arch/arm/mach-imx/mach-pca100.c
@@ -245,8 +245,7 @@ static int pca100_sdhc2_init(struct device *dev, irq_handler_t detect_irq,
 	int ret;
 
 	ret = request_irq(gpio_to_irq(IMX_GPIO_NR(3, 29)), detect_irq,
-			  IRQF_DISABLED | IRQF_TRIGGER_FALLING,
-			  "imx-mmc-detect", data);
+			  IRQF_TRIGGER_FALLING, "imx-mmc-detect", data);
 	if (ret)
 		printk(KERN_ERR
 			"pca100: Failed to reuest irq for sd/mmc detection\n");
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 16/17] ARM: ebsa110: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
                   ` (13 preceding siblings ...)
  2013-12-30 16:09 ` [PATCH 15/17] ARM: imx: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2013-12-30 16:09 ` [PATCH 17/17] ARM: w90x900: " Daniel Lezcano
  2014-01-02 18:29 ` [PATCH 01/17] ARM: spear: " Arnd Bergmann
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-ebsa110/core.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-ebsa110/core.c b/arch/arm/mach-ebsa110/core.c
index 68ac934..8254e71 100644
--- a/arch/arm/mach-ebsa110/core.c
+++ b/arch/arm/mach-ebsa110/core.c
@@ -206,7 +206,7 @@ ebsa110_timer_interrupt(int irq, void *dev_id)
 
 static struct irqaction ebsa110_timer_irq = {
 	.name		= "EBSA110 Timer Tick",
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.handler	= ebsa110_timer_interrupt,
 };
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 17/17] ARM: w90x900: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
                   ` (14 preceding siblings ...)
  2013-12-30 16:09 ` [PATCH 16/17] ARM: ebsa110: " Daniel Lezcano
@ 2013-12-30 16:09 ` Daniel Lezcano
  2014-01-02 18:29 ` [PATCH 01/17] ARM: spear: " Arnd Bergmann
  16 siblings, 0 replies; 20+ messages in thread
From: Daniel Lezcano @ 2013-12-30 16:09 UTC (permalink / raw)
  To: linux-arm-kernel

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-w90x900/time.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-w90x900/time.c b/arch/arm/mach-w90x900/time.c
index 30fbca8..9230d37 100644
--- a/arch/arm/mach-w90x900/time.c
+++ b/arch/arm/mach-w90x900/time.c
@@ -111,7 +111,7 @@ static irqreturn_t nuc900_timer0_interrupt(int irq, void *dev_id)
 
 static struct irqaction nuc900_timer0_irq = {
 	.name		= "nuc900-timer0",
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.handler	= nuc900_timer0_interrupt,
 };
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag
  2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
                   ` (15 preceding siblings ...)
  2013-12-30 16:09 ` [PATCH 17/17] ARM: w90x900: " Daniel Lezcano
@ 2014-01-02 18:29 ` Arnd Bergmann
  2014-01-02 18:51   ` Daniel Lezcano
  16 siblings, 1 reply; 20+ messages in thread
From: Arnd Bergmann @ 2014-01-02 18:29 UTC (permalink / raw)
  To: linux-arm-kernel

On Monday 30 December 2013, Daniel Lezcano wrote:
> This flag is a NOOP and scheduled to be removed
> 
> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>

Thanks for sending this series. I think the patches are duplicates of stuff that
Michael Opdenacker has sent before (actually multiple times). I have no problem
applying either version into arm-soc, but I think it would be better to attribute
them to Michael, since he came first. Can you two please coordinate and send a
single pull request for the arm-soc related patches that haven't made it into
linux-next yet?

	Arnd

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag
  2014-01-02 18:29 ` [PATCH 01/17] ARM: spear: " Arnd Bergmann
@ 2014-01-02 18:51   ` Daniel Lezcano
  2014-01-03 14:34     ` Arnd Bergmann
  0 siblings, 1 reply; 20+ messages in thread
From: Daniel Lezcano @ 2014-01-02 18:51 UTC (permalink / raw)
  To: linux-arm-kernel

On 01/02/2014 07:29 PM, Arnd Bergmann wrote:
> On Monday 30 December 2013, Daniel Lezcano wrote:
>> This flag is a NOOP and scheduled to be removed
>>
>> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
>
> Thanks for sending this series. I think the patches are duplicates of stuff that
> Michael Opdenacker has sent before (actually multiple times). I have no problem
> applying either version into arm-soc, but I think it would be better to attribute
> them to Michael, since he came first. Can you two please coordinate and send a
> single pull request for the arm-soc related patches that haven't made it into
> linux-next yet?

Michael removed the flag for:

pxa (ed7936f913456e4c01aed75deba6cfaf830fa8cf)
samsung (fa53d5cdbffbce421c3bd2f937b5626fc044fedc)
avr32 (7155530d9eb692994d208836e4965da06b17c99d)
ep93xx (3a71ae4796fdaedbdbdab94660b7b7b5bfe61d1d)
plat-orion (eb4d552b933ac59c0c8e0604ff435c5208a82679)

The patchset I sent is on top of arm/for-next and finishes to remove 
this flag for arch/arm. It should not overlap with what Michael did.

I'm ok to attribute the patchset to Michael if that can help to accept 
this patchset and kill this flag for arch/arm.

Thanks
   -- Daniel


-- 
  <http://www.linaro.org/> Linaro.org ? Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag
  2014-01-02 18:51   ` Daniel Lezcano
@ 2014-01-03 14:34     ` Arnd Bergmann
  0 siblings, 0 replies; 20+ messages in thread
From: Arnd Bergmann @ 2014-01-03 14:34 UTC (permalink / raw)
  To: linux-arm-kernel

On Thursday 02 January 2014, Daniel Lezcano wrote:
> On 01/02/2014 07:29 PM, Arnd Bergmann wrote:
> > On Monday 30 December 2013, Daniel Lezcano wrote:
> >> This flag is a NOOP and scheduled to be removed
> >>
> >> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
> >
> > Thanks for sending this series. I think the patches are duplicates of stuff that
> > Michael Opdenacker has sent before (actually multiple times). I have no problem
> > applying either version into arm-soc, but I think it would be better to attribute
> > them to Michael, since he came first. Can you two please coordinate and send a
> > single pull request for the arm-soc related patches that haven't made it into
> > linux-next yet?
> 
> Michael removed the flag for:
> 
> pxa (ed7936f913456e4c01aed75deba6cfaf830fa8cf)
> samsung (fa53d5cdbffbce421c3bd2f937b5626fc044fedc)
> avr32 (7155530d9eb692994d208836e4965da06b17c99d)
> ep93xx (3a71ae4796fdaedbdbdab94660b7b7b5bfe61d1d)
> plat-orion (eb4d552b933ac59c0c8e0604ff435c5208a82679)
> 
> The patchset I sent is on top of arm/for-next and finishes to remove 
> this flag for arch/arm. It should not overlap with what Michael did.
> 
> I'm ok to attribute the patchset to Michael if that can help to accept 
> this patchset and kill this flag for arch/arm.

IIRC, Michael actually sent patches for all uses in the entire kernel
previously, but relied on sub-maintainers to pick them up one by one.
Some patches already got 'Acked-by' replies, which I'd like to keep.

It's probably time to do a bigger sweeping change now and kill it for
good, bypassing the remaining maintainers that haven't acted so far.
We can certainly carry the patches related to arm-soc, and I think
it's worth trying once more to get the scsi patches merged, since there
is a bunch of them. Everything else can probably go directly as a
single pull-request to Linus, or perhaps via Andrew Morton.

	Arnd

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2014-01-03 14:34 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
2013-12-30 16:09 ` [PATCH 02/17] ARM: ixp4xx: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 03/17] ARM: sa1100: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 04/17] ARM: mmp: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 05/17] ARM: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 06/17] ARM: cns3xxx: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 07/17] ARM: footbridge: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 08/17] ARM: ks8695: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 09/17] ARM: u300: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 10/17] ARM: rpc: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 11/17] ARM: iop: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 12/17] ARM: integrator: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 13/17] ARM: lpc32xx: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 14/17] ARM: netx: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 15/17] ARM: imx: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 16/17] ARM: ebsa110: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 17/17] ARM: w90x900: " Daniel Lezcano
2014-01-02 18:29 ` [PATCH 01/17] ARM: spear: " Arnd Bergmann
2014-01-02 18:51   ` Daniel Lezcano
2014-01-03 14:34     ` Arnd Bergmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).