2
0
forked from Ivasoft/openwrt

generic: crypto: remove IRQF_DISABLED

no-op since 2.6.35
    removed in Kernel 4.1
    see https://lwn.net/Articles/380931/

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>

SVN-Revision: 46671
This commit is contained in:
John Crispin
2015-08-17 11:26:02 +00:00
parent 4582d7e8f5
commit 6d461ddbb2
3 changed files with 3 additions and 3 deletions

View File

@@ -1203,7 +1203,7 @@ mv_cesa_ocf_init(struct platform_device *pdev)
#endif
/* register interrupt */
if( request_irq( cesa_device.irq, cesa_interrupt_handler,
(IRQF_DISABLED) , "cesa", &cesa_ocf_id) < 0) {
0, "cesa", &cesa_ocf_id) < 0) {
printk("%s,%d: cannot assign irq %x\n", __FILE__, __LINE__, cesa_device.reg);
return EINVAL;
}