Project : madwifi
Revision : 1778
Author : dwhedon (David Kimdon)
Date : 2006-10-25 21:09:16 +0200 (Wed, 25 Oct 2006)
Log Message :
Remove 3rd argument to ath_intr().
Interrupt handlers no longer take struct pt_regs *regs as an argument as
of 2.6.19-rc3.
Affected Files:
* branches/dadwifi/ath/if_ath.c updated
* branches/dadwifi/ath/if_athvar.h updated
Modified: branches/dadwifi/ath/if_ath.c
===================================================================
--- branches/dadwifi/ath/if_ath.c 2006-10-25 16:41:46 UTC (rev 1777)
+++ branches/dadwifi/ath/if_ath.c 2006-10-25 19:09:16 UTC (rev 1778)
@@ -1672,7 +1672,7 @@
* Interrupt handler. Most of the actual processing is deferred.
*/
irqreturn_t
-ath_intr(int irq, void *dev_id, struct pt_regs *regs)
+ath_intr(int irq, void *dev_id)
{
struct net_device *dev = dev_id;
struct ath_softc *sc = ATH_GET_SOFTC(dev);
Modified: branches/dadwifi/ath/if_athvar.h
===================================================================
--- branches/dadwifi/ath/if_athvar.h 2006-10-25 16:41:46 UTC (rev 1777)
+++ branches/dadwifi/ath/if_athvar.h 2006-10-25 19:09:16 UTC (rev 1778)
@@ -766,7 +766,7 @@
void ath_resume(struct net_device *);
void ath_suspend(struct net_device *);
void ath_shutdown(struct net_device *);
-irqreturn_t ath_intr(int, void *, struct pt_regs *);
+irqreturn_t ath_intr(int, void *);
int ath_ioctl_ethtool(struct ath_softc *, int, void __user *);
void bus_read_cachesize(struct ath_softc *, u_int8_t *);
#ifdef CONFIG_SYSCTL
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
|