diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-10-13 01:58:39 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2013-10-28 14:51:50 -0400 |
commit | 1957f0d71c5a6dc8c6f2435ec477ec777d080603 (patch) | |
tree | 1d1183b84f7f65ecc9697f31fb244fa01c452ec2 | |
parent | 76a4ddbd52d5c62c54afd03c0d9092045351911f (diff) |
[media] s5p-mfc: remove deprecated 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>
Signed-off-by: Kamil Debski <k.debski@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r-- | drivers/media/platform/s5p-mfc/s5p_mfc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc.c b/drivers/media/platform/s5p-mfc/s5p_mfc.c index bec0f61c7b7c..5f2c4ad6c2cb 100644 --- a/drivers/media/platform/s5p-mfc/s5p_mfc.c +++ b/drivers/media/platform/s5p-mfc/s5p_mfc.c | |||
@@ -1105,7 +1105,7 @@ static int s5p_mfc_probe(struct platform_device *pdev) | |||
1105 | } | 1105 | } |
1106 | dev->irq = res->start; | 1106 | dev->irq = res->start; |
1107 | ret = devm_request_irq(&pdev->dev, dev->irq, s5p_mfc_irq, | 1107 | ret = devm_request_irq(&pdev->dev, dev->irq, s5p_mfc_irq, |
1108 | IRQF_DISABLED, pdev->name, dev); | 1108 | 0, pdev->name, dev); |
1109 | if (ret) { | 1109 | if (ret) { |
1110 | dev_err(&pdev->dev, "Failed to install irq (%d)\n", ret); | 1110 | dev_err(&pdev->dev, "Failed to install irq (%d)\n", ret); |
1111 | goto err_res; | 1111 | goto err_res; |