diff options
Diffstat (limited to 'drivers/net/ks8851_mll.c')
| -rw-r--r-- | drivers/net/ks8851_mll.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ks8851_mll.c b/drivers/net/ks8851_mll.c index c146304d8d6..c0ceebccaa4 100644 --- a/drivers/net/ks8851_mll.c +++ b/drivers/net/ks8851_mll.c @@ -854,8 +854,8 @@ static void ks_update_link_status(struct net_device *netdev, struct ks_net *ks)  static irqreturn_t ks_irq(int irq, void *pw)  { -	struct ks_net *ks = pw; -	struct net_device *netdev = ks->netdev; +	struct net_device *netdev = pw; +	struct ks_net *ks = netdev_priv(netdev);  	u16 status;  	/*this should be the first in IRQ handler */  |