diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-12-11 17:05:19 -0500 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2013-12-11 17:05:19 -0500 |
commit | fa53d5cdbffbce421c3bd2f937b5626fc044fedc (patch) | |
tree | 24899de81dbb158c59fa70c2f0d872ca249fc3c4 /arch/arm/mach-s3c24xx/dma.c | |
parent | b65f372a1e787c24769e5a4c6caa97465c0939b9 (diff) |
ARM: SAMSUNG: remove IRQF_DISABLED
This patch proposes to remove the use of the IRQF_DISABLED flag.
It's a NOOP since 2.6.35 and it will be removed one day.
Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Reviewed-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s3c24xx/dma.c')
-rw-r--r-- | arch/arm/mach-s3c24xx/dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c24xx/dma.c b/arch/arm/mach-s3c24xx/dma.c index 4a65cba3295d..a8dafc174fe3 100644 --- a/arch/arm/mach-s3c24xx/dma.c +++ b/arch/arm/mach-s3c24xx/dma.c | |||
@@ -742,7 +742,7 @@ int s3c2410_dma_request(enum dma_ch channel, | |||
742 | chan->irq_claimed = 1; | 742 | chan->irq_claimed = 1; |
743 | local_irq_restore(flags); | 743 | local_irq_restore(flags); |
744 | 744 | ||
745 | err = request_irq(chan->irq, s3c2410_dma_irq, IRQF_DISABLED, | 745 | err = request_irq(chan->irq, s3c2410_dma_irq, 0, |
746 | client->name, (void *)chan); | 746 | client->name, (void *)chan); |
747 | 747 | ||
748 | local_irq_save(flags); | 748 | local_irq_save(flags); |