ne2: convert to net_device_ops
Almost there. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
					parent
					
						
							
								4be7ef4eac
							
						
					
				
			
			
				commit
				
					
						50014f1b93
					
				
			
		
					 1 changed files with 1 additions and 19 deletions
				
			
		|  | @ -492,11 +492,7 @@ static int __init ne2_probe1(struct net_device *dev, int slot) | ||||||
| 
 | 
 | ||||||
| 	ei_status.priv = slot; | 	ei_status.priv = slot; | ||||||
| 
 | 
 | ||||||
| 	dev->open = &ne_open; | 	dev->netdev_ops = &eip_netdev_ops; | ||||||
| 	dev->stop = &ne_close; |  | ||||||
| #ifdef CONFIG_NET_POLL_CONTROLLER |  | ||||||
| 	dev->poll_controller = eip_poll; |  | ||||||
| #endif |  | ||||||
| 	NS8390p_init(dev, 0); | 	NS8390p_init(dev, 0); | ||||||
| 
 | 
 | ||||||
| 	retval = register_netdev(dev); | 	retval = register_netdev(dev); | ||||||
|  | @ -511,20 +507,6 @@ out: | ||||||
| 	return retval; | 	return retval; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| static int ne_open(struct net_device *dev) |  | ||||||
| { |  | ||||||
| 	eip_open(dev); |  | ||||||
| 	return 0; |  | ||||||
| } |  | ||||||
| 
 |  | ||||||
| static int ne_close(struct net_device *dev) |  | ||||||
| { |  | ||||||
| 	if (ei_debug > 1) |  | ||||||
| 		printk("%s: Shutting down ethercard.\n", dev->name); |  | ||||||
| 	eip_close(dev); |  | ||||||
| 	return 0; |  | ||||||
| } |  | ||||||
| 
 |  | ||||||
| /* Hard reset the card.  This used to pause for the same period that a
 | /* Hard reset the card.  This used to pause for the same period that a
 | ||||||
|    8390 reset command required, but that shouldn't be necessary. */ |    8390 reset command required, but that shouldn't be necessary. */ | ||||||
| static void ne_reset_8390(struct net_device *dev) | static void ne_reset_8390(struct net_device *dev) | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Stephen Hemminger
				Stephen Hemminger