openwrtv4/package/kernel/ar7-atm/patches-D7.04.03.00/250-4.1_fixes.patch
Jonas Gorski 6f2fe75834 ar7-atm: fix compilation for 4.1
Add the required changes to make it compile for 4.1 again.

Signed-off-by: Jonas Gorski <jogo@openwrt.org>

SVN-Revision: 46306
2015-07-12 11:57:40 +00:00

20 lines
817 B
Diff

--- a/tn7atm.c
+++ b/tn7atm.c
@@ -788,7 +788,7 @@ static int __init tn7atm_irq_request (st
* Register SAR interrupt
*/
priv->sar_irq = LNXINTNUM (ATM_SAR_INT); /* Interrupt line # */
- if (request_irq (priv->sar_irq, tn7atm_sar_irq, IRQF_DISABLED, "SAR ", dev))
+ if (request_irq (priv->sar_irq, tn7atm_sar_irq, 0, "SAR ", dev))
printk ("Could not register tn7atm_sar_irq\n");
/*
@@ -806,7 +806,7 @@ static int __init tn7atm_irq_request (st
* Reigster Receive interrupt A
*/
priv->dsl_irq = LNXINTNUM (ATM_DSL_INT); /* Interrupt line # */
- if (request_irq (priv->dsl_irq, tn7atm_dsl_irq, IRQF_DISABLED, "DSL ", dev))
+ if (request_irq (priv->dsl_irq, tn7atm_dsl_irq, 0, "DSL ", dev))
printk ("Could not register tn7atm_dsl_irq\n");
/***** VRB Tasklet Mode ****/