mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
crypto: mv_cesa: 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: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
1c6b7c2108
commit
6d3aab4ebe
@ -1084,7 +1084,7 @@ static int mv_probe(struct platform_device *pdev)
|
||||
goto err_unmap_sram;
|
||||
}
|
||||
|
||||
ret = request_irq(irq, crypto_int, IRQF_DISABLED, dev_name(&pdev->dev),
|
||||
ret = request_irq(irq, crypto_int, 0, dev_name(&pdev->dev),
|
||||
cp);
|
||||
if (ret)
|
||||
goto err_thread;
|
||||
|
Loading…
Reference in New Issue
Block a user