diff options
| author | David Howells <dhowells@redhat.com> | 2006-11-22 14:57:56 +0000 | 
|---|---|---|
| committer | David Howells <dhowells@redhat.com> | 2006-11-22 14:57:56 +0000 | 
| commit | c4028958b6ecad064b1a6303a6a5906d4fe48d73 (patch) | |
| tree | 1c4c89652c62a75da09f9b9442012007e4ac6250 /drivers/net/skge.c | |
| parent | 65f27f38446e1976cc98fd3004b110fedcddd189 (diff) | |
| download | olio-linux-3.10-c4028958b6ecad064b1a6303a6a5906d4fe48d73.tar.xz olio-linux-3.10-c4028958b6ecad064b1a6303a6a5906d4fe48d73.zip  | |
WorkStruct: make allyesconfig
Fix up for make allyesconfig.
Signed-Off-By: David Howells <dhowells@redhat.com>
Diffstat (limited to 'drivers/net/skge.c')
| -rw-r--r-- | drivers/net/skge.c | 15 | 
1 files changed, 8 insertions, 7 deletions
diff --git a/drivers/net/skge.c b/drivers/net/skge.c index b2949035f66..3b67614372a 100644 --- a/drivers/net/skge.c +++ b/drivers/net/skge.c @@ -1327,10 +1327,11 @@ static void xm_check_link(struct net_device *dev)   * Since internal PHY is wired to a level triggered pin, can't   * get an interrupt when carrier is detected.   */ -static void xm_link_timer(void *arg) +static void xm_link_timer(struct work_struct *work)  { -	struct net_device *dev = arg; -	struct skge_port *skge = netdev_priv(arg); +	struct skge_port *skge = +		container_of(work, struct skge_port, link_thread.work); +	struct net_device *dev = skge->netdev;   	struct skge_hw *hw = skge->hw;  	int port = skge->port; @@ -3072,9 +3073,9 @@ static void skge_error_irq(struct skge_hw *hw)   * because accessing phy registers requires spin wait which might   * cause excess interrupt latency.   */ -static void skge_extirq(void *arg) +static void skge_extirq(struct work_struct *work)  { -	struct skge_hw *hw = arg; +	struct skge_hw *hw = container_of(work, struct skge_hw, phy_work);  	int port;  	mutex_lock(&hw->phy_mutex); @@ -3456,7 +3457,7 @@ static struct net_device *skge_devinit(struct skge_hw *hw, int port,  	skge->port = port;  	/* Only used for Genesis XMAC */ -	INIT_WORK(&skge->link_thread, xm_link_timer, dev); +	INIT_DELAYED_WORK(&skge->link_thread, xm_link_timer);  	if (hw->chip_id != CHIP_ID_GENESIS) {  		dev->features |= NETIF_F_IP_CSUM | NETIF_F_SG; @@ -3543,7 +3544,7 @@ static int __devinit skge_probe(struct pci_dev *pdev,  	hw->pdev = pdev;  	mutex_init(&hw->phy_mutex); -	INIT_WORK(&hw->phy_work, skge_extirq, hw); +	INIT_WORK(&hw->phy_work, skge_extirq);  	spin_lock_init(&hw->hw_lock);  	hw->regs = ioremap_nocache(pci_resource_start(pdev, 0), 0x4000);  |