Commit 79f8ae3a authored by Stephen Hemminger's avatar Stephen Hemminger Committed by David S. Miller

tokenring: convert drivers to net_device_ops

Convert madge and proteon drivers which are really just subclasses
of tms380.
Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ddec2c89
...@@ -142,7 +142,7 @@ static void madgemc_sifwritew(struct net_device *dev, unsigned short val, unsign ...@@ -142,7 +142,7 @@ static void madgemc_sifwritew(struct net_device *dev, unsigned short val, unsign
return; return;
} }
static struct net_device_ops madgemc_netdev_ops __read_mostly;
static int __devinit madgemc_probe(struct device *device) static int __devinit madgemc_probe(struct device *device)
{ {
...@@ -168,7 +168,7 @@ static int __devinit madgemc_probe(struct device *device) ...@@ -168,7 +168,7 @@ static int __devinit madgemc_probe(struct device *device)
goto getout; goto getout;
} }
dev->dma = 0; dev->netdev_ops = &madgemc_netdev_ops;
card = kmalloc(sizeof(struct card_info), GFP_KERNEL); card = kmalloc(sizeof(struct card_info), GFP_KERNEL);
if (card==NULL) { if (card==NULL) {
...@@ -348,9 +348,6 @@ static int __devinit madgemc_probe(struct device *device) ...@@ -348,9 +348,6 @@ static int __devinit madgemc_probe(struct device *device)
memcpy(tp->ProductID, "Madge MCA 16/4 ", PROD_ID_SIZE + 1); memcpy(tp->ProductID, "Madge MCA 16/4 ", PROD_ID_SIZE + 1);
dev->open = madgemc_open;
dev->stop = madgemc_close;
tp->tmspriv = card; tp->tmspriv = card;
dev_set_drvdata(device, dev); dev_set_drvdata(device, dev);
...@@ -758,6 +755,10 @@ static struct mca_driver madgemc_driver = { ...@@ -758,6 +755,10 @@ static struct mca_driver madgemc_driver = {
static int __init madgemc_init (void) static int __init madgemc_init (void)
{ {
madgemc_netdev_ops = tms380tr_netdev_ops;
madgemc_netdev_ops.ndo_open = madgemc_open;
madgemc_netdev_ops.ndo_stop = madgemc_close;
return mca_register_driver (&madgemc_driver); return mca_register_driver (&madgemc_driver);
} }
......
...@@ -116,6 +116,8 @@ nodev: ...@@ -116,6 +116,8 @@ nodev:
return -ENODEV; return -ENODEV;
} }
static struct net_device_ops proteon_netdev_ops __read_mostly;
static int __init setup_card(struct net_device *dev, struct device *pdev) static int __init setup_card(struct net_device *dev, struct device *pdev)
{ {
struct net_local *tp; struct net_local *tp;
...@@ -167,8 +169,7 @@ static int __init setup_card(struct net_device *dev, struct device *pdev) ...@@ -167,8 +169,7 @@ static int __init setup_card(struct net_device *dev, struct device *pdev)
tp->tmspriv = NULL; tp->tmspriv = NULL;
dev->open = proteon_open; dev->netdev_ops = &proteon_netdev_ops;
dev->stop = tms380tr_close;
if (dev->irq == 0) if (dev->irq == 0)
{ {
...@@ -352,6 +353,10 @@ static int __init proteon_init(void) ...@@ -352,6 +353,10 @@ static int __init proteon_init(void)
struct platform_device *pdev; struct platform_device *pdev;
int i, num = 0, err = 0; int i, num = 0, err = 0;
proteon_netdev_ops = tms380tr_netdev_ops;
proteon_netdev_ops.ndo_open = proteon_open;
proteon_netdev_ops.ndo_stop = tms380tr_close;
err = platform_driver_register(&proteon_driver); err = platform_driver_register(&proteon_driver);
if (err) if (err)
return err; return err;
......
...@@ -133,6 +133,8 @@ static int __init sk_isa_probe1(struct net_device *dev, int ioaddr) ...@@ -133,6 +133,8 @@ static int __init sk_isa_probe1(struct net_device *dev, int ioaddr)
return 0; return 0;
} }
static struct net_device_ops sk_isa_netdev_ops __read_mostly;
static int __init setup_card(struct net_device *dev, struct device *pdev) static int __init setup_card(struct net_device *dev, struct device *pdev)
{ {
struct net_local *tp; struct net_local *tp;
...@@ -184,8 +186,7 @@ static int __init setup_card(struct net_device *dev, struct device *pdev) ...@@ -184,8 +186,7 @@ static int __init setup_card(struct net_device *dev, struct device *pdev)
tp->tmspriv = NULL; tp->tmspriv = NULL;
dev->open = sk_isa_open; dev->netdev_ops = &sk_isa_netdev_ops;
dev->stop = tms380tr_close;
if (dev->irq == 0) if (dev->irq == 0)
{ {
...@@ -362,6 +363,10 @@ static int __init sk_isa_init(void) ...@@ -362,6 +363,10 @@ static int __init sk_isa_init(void)
struct platform_device *pdev; struct platform_device *pdev;
int i, num = 0, err = 0; int i, num = 0, err = 0;
sk_isa_netdev_ops = tms380tr_netdev_ops;
sk_isa_netdev_ops.ndo_open = sk_isa_open;
sk_isa_netdev_ops.ndo_stop = tms380tr_close;
err = platform_driver_register(&sk_isa_driver); err = platform_driver_register(&sk_isa_driver);
if (err) if (err)
return err; return err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment