diff options
Diffstat (limited to 'drivers/net/tlan.c')
| -rw-r--r-- | drivers/net/tlan.c | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/net/tlan.c b/drivers/net/tlan.c index 8d807bf603a..e14f5a00f65 100644 --- a/drivers/net/tlan.c +++ b/drivers/net/tlan.c @@ -289,7 +289,7 @@ static void	TLan_Eisa_Cleanup( void );  static int      TLan_Init( struct net_device * );  static int	TLan_Open( struct net_device *dev );  static int	TLan_StartTx( struct sk_buff *, struct net_device *); -static irqreturn_t TLan_HandleInterrupt( int, void *, struct pt_regs *); +static irqreturn_t TLan_HandleInterrupt( int, void *);  static int	TLan_Close( struct net_device *);  static struct	net_device_stats *TLan_GetStats( struct net_device *);  static void	TLan_SetMulticastList( struct net_device *); @@ -824,7 +824,7 @@ static void  __init TLan_EisaProbe (void)  static void TLan_Poll(struct net_device *dev)  {  	disable_irq(dev->irq); -	TLan_HandleInterrupt(dev->irq, dev, NULL); +	TLan_HandleInterrupt(dev->irq, dev);  	enable_irq(dev->irq);  }  #endif @@ -1151,7 +1151,6 @@ static int TLan_StartTx( struct sk_buff *skb, struct net_device *dev )  	 *			occurred.  	 *		dev_id	A pointer to the device assigned to  	 *			this irq line. -	 *		regs	???  	 *  	 *	This function handles an interrupt generated by its  	 *	assigned TLAN adapter.  The function deactivates @@ -1162,7 +1161,7 @@ static int TLan_StartTx( struct sk_buff *skb, struct net_device *dev )  	 *  	 **************************************************************/ -static irqreturn_t TLan_HandleInterrupt(int irq, void *dev_id, struct pt_regs *regs) +static irqreturn_t TLan_HandleInterrupt(int irq, void *dev_id)  {  	u32		ack;  	struct net_device	*dev;  |