mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 19:06:16 +02:00
ae1487fbc7
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16158 3c298f89-4303-0410-b956-a3cf2f4a3e73
38 lines
1.1 KiB
Diff
38 lines
1.1 KiB
Diff
--- a/tn7atm.c
|
|
+++ b/tn7atm.c
|
|
@@ -566,7 +566,7 @@ static int turbodsl_check_priority_type(
|
|
* Description: tnetd73xx SAR interrupt.
|
|
*
|
|
*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
|
-static void tn7atm_sar_irq (int irq, void *voiddev, struct pt_regs *regs)
|
|
+static irqreturn_t tn7atm_sar_irq (int irq, void *voiddev)
|
|
{
|
|
struct atm_dev *atmdev;
|
|
Tn7AtmPrivate *priv;
|
|
@@ -593,6 +593,7 @@ static void tn7atm_sar_irq (int irq, voi
|
|
#ifdef TIATM_INST_SUPP
|
|
psp_trace_par (ATM_DRV_SAR_ISR_EXIT, retval);
|
|
#endif
|
|
+ return IRQ_HANDLED;
|
|
}
|
|
|
|
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
@@ -602,7 +603,7 @@ static void tn7atm_sar_irq (int irq, voi
|
|
* Description: tnetd73xx DSL interrupt.
|
|
*
|
|
*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
|
-static void tn7atm_dsl_irq (int irq, void *voiddev, struct pt_regs *regs)
|
|
+static irqreturn_t tn7atm_dsl_irq (int irq, void *voiddev)
|
|
{
|
|
struct atm_dev *atmdev;
|
|
Tn7AtmPrivate *priv;
|
|
@@ -624,6 +625,8 @@ static void tn7atm_dsl_irq (int irq, voi
|
|
#ifdef TIATM_INST_SUPP
|
|
psp_trace_par (ATM_DRV_DSL_ISR_EXIT, retval);
|
|
#endif
|
|
+
|
|
+ return IRQ_HANDLED;
|
|
}
|
|
|
|
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|