aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/micrel/ks8695net.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ethernet/micrel/ks8695net.c')
-rw-r--r--drivers/net/ethernet/micrel/ks8695net.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/ethernet/micrel/ks8695net.c b/drivers/net/ethernet/micrel/ks8695net.c
index e62c31234cfa..07a6ebc47c92 100644
--- a/drivers/net/ethernet/micrel/ks8695net.c
+++ b/drivers/net/ethernet/micrel/ks8695net.c
@@ -1274,7 +1274,7 @@ ks8695_open(struct net_device *ndev)
1274 * This initialises the LAN switch in the KS8695 to a known-good 1274 * This initialises the LAN switch in the KS8695 to a known-good
1275 * set of defaults. 1275 * set of defaults.
1276 */ 1276 */
1277static void __devinit 1277static void
1278ks8695_init_switch(struct ks8695_priv *ksp) 1278ks8695_init_switch(struct ks8695_priv *ksp)
1279{ 1279{
1280 u32 ctrl; 1280 u32 ctrl;
@@ -1302,7 +1302,7 @@ ks8695_init_switch(struct ks8695_priv *ksp)
1302 * This initialises a KS8695's WAN phy to sensible values for 1302 * This initialises a KS8695's WAN phy to sensible values for
1303 * autonegotiation etc. 1303 * autonegotiation etc.
1304 */ 1304 */
1305static void __devinit 1305static void
1306ks8695_init_wan_phy(struct ks8695_priv *ksp) 1306ks8695_init_wan_phy(struct ks8695_priv *ksp)
1307{ 1307{
1308 u32 ctrl; 1308 u32 ctrl;
@@ -1346,7 +1346,7 @@ static const struct net_device_ops ks8695_netdev_ops = {
1346 * wan ports, and an IORESOURCE_IRQ for the link IRQ for the wan 1346 * wan ports, and an IORESOURCE_IRQ for the link IRQ for the wan
1347 * port. 1347 * port.
1348 */ 1348 */
1349static int __devinit 1349static int
1350ks8695_probe(struct platform_device *pdev) 1350ks8695_probe(struct platform_device *pdev)
1351{ 1351{
1352 struct ks8695_priv *ksp; 1352 struct ks8695_priv *ksp;
@@ -1594,7 +1594,7 @@ ks8695_drv_resume(struct platform_device *pdev)
1594 * 1594 *
1595 * This unregisters and releases a KS8695 ethernet device. 1595 * This unregisters and releases a KS8695 ethernet device.
1596 */ 1596 */
1597static int __devexit 1597static int
1598ks8695_drv_remove(struct platform_device *pdev) 1598ks8695_drv_remove(struct platform_device *pdev)
1599{ 1599{
1600 struct net_device *ndev = platform_get_drvdata(pdev); 1600 struct net_device *ndev = platform_get_drvdata(pdev);
@@ -1617,7 +1617,7 @@ static struct platform_driver ks8695_driver = {
1617 .owner = THIS_MODULE, 1617 .owner = THIS_MODULE,
1618 }, 1618 },
1619 .probe = ks8695_probe, 1619 .probe = ks8695_probe,
1620 .remove = __devexit_p(ks8695_drv_remove), 1620 .remove = ks8695_drv_remove,
1621 .suspend = ks8695_drv_suspend, 1621 .suspend = ks8695_drv_suspend,
1622 .resume = ks8695_drv_resume, 1622 .resume = ks8695_drv_resume,
1623}; 1623};