projects
/
platform
/
kernel
/
linux-stable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f358c28
)
dma: coh901318: remove deprecated IRQF_DISABLED
author
Michael Opdenacker
<michael.opdenacker@free-electrons.com>
Sun, 13 Oct 2013 05:00:00 +0000
(07:00 +0200)
committer
Vinod Koul
<vinod.koul@intel.com>
Sun, 13 Oct 2013 14:51:34 +0000
(20:21 +0530)
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>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/coh901318.c
patch
|
blob
|
history
diff --git
a/drivers/dma/coh901318.c
b/drivers/dma/coh901318.c
index
31011d2
..
3025b91
100644
(file)
--- a/
drivers/dma/coh901318.c
+++ b/
drivers/dma/coh901318.c
@@
-2694,7
+2694,7
@@
static int __init coh901318_probe(struct platform_device *pdev)
if (irq < 0)
return irq;
- err = devm_request_irq(&pdev->dev, irq, dma_irq_handler,
IRQF_DISABLED
,
+ err = devm_request_irq(&pdev->dev, irq, dma_irq_handler,
0
,
"coh901318", base);
if (err)
return err;