Update ucc_geth.c for new workqueue structure

The workqueue interface changed with David Howell's patch on 11/22/2006
(SHA 65f27f38446e1976cc98fd3004b110fedcddd189). Several drivers were
updated with that patch to handle the new interface, but ucc_geth.c
was not one of them. This patch updates ucc_geth.c to support the new
model.

A compiler warning in set_mac_addr() was also fixed.

Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>

authored by Timur Tabi and committed by Jeff Garzik df19b6b0 b2db8dd4

+7 -5
+7 -5
drivers/net/ucc_geth.c
··· 29 29 #include <linux/fsl_devices.h> 30 30 #include <linux/ethtool.h> 31 31 #include <linux/mii.h> 32 + #include <linux/workqueue.h> 32 33 33 34 #include <asm/of_platform.h> 34 35 #include <asm/uaccess.h> ··· 473 472 kfree(enet_addr_cont); 474 473 } 475 474 476 - static int set_mac_addr(__be16 __iomem *reg, u8 *mac) 475 + static void set_mac_addr(__be16 __iomem *reg, u8 *mac) 477 476 { 478 477 out_be16(&reg[0], ((u16)mac[5] << 8) | mac[4]); 479 478 out_be16(&reg[1], ((u16)mac[3] << 8) | mac[2]); ··· 3921 3920 } 3922 3921 3923 3922 /* Scheduled by the phy_interrupt/timer to handle PHY changes */ 3924 - static void ugeth_phy_change(void *data) 3923 + static void ugeth_phy_change(struct work_struct *work) 3925 3924 { 3926 - struct net_device *dev = (struct net_device *)data; 3927 - struct ucc_geth_private *ugeth = netdev_priv(dev); 3925 + struct ucc_geth_private *ugeth = 3926 + container_of(work, struct ucc_geth_private, tq); 3927 + struct net_device *dev = ugeth->dev; 3928 3928 struct ucc_geth *ug_regs; 3929 3929 int result = 0; 3930 3930 ··· 4082 4080 #endif /* CONFIG_UGETH_NAPI */ 4083 4081 4084 4082 /* Set up the PHY change work queue */ 4085 - INIT_WORK(&ugeth->tq, ugeth_phy_change, dev); 4083 + INIT_WORK(&ugeth->tq, ugeth_phy_change); 4086 4084 4087 4085 init_timer(&ugeth->phy_info_timer); 4088 4086 ugeth->phy_info_timer.function = &ugeth_phy_startup_timer;