Lines Matching refs:net_device
124 extern void reset_chip(struct net_device *dev);
126 static int net_open(struct net_device *dev);
127 static int net_send_packet(struct sk_buff *skb, struct net_device *dev);
129 static void set_multicast_list(struct net_device *dev);
130 static void net_rx(struct net_device *dev);
131 static int net_close(struct net_device *dev);
132 static struct net_device_stats *net_get_stats(struct net_device *dev);
133 static int set_mac_address(struct net_device *dev, void *addr);
141 readreg_io(struct net_device *dev, int portno) in readreg_io()
148 writereg_io(struct net_device *dev, int portno, int value) in writereg_io()
156 readreg(struct net_device *dev, int portno) in readreg()
162 writereg(struct net_device *dev, int portno, int value) in writereg()
180 struct net_device * __init mac89x0_probe(int unit) in mac89x0_probe()
182 struct net_device *dev; in mac89x0_probe()
301 void __init reset_chip(struct net_device *dev)
325 net_open(struct net_device *dev) in net_open()
371 net_send_packet(struct sk_buff *skb, struct net_device *dev) in net_send_packet()
414 struct net_device *dev = dev_id; in net_interrupt()
483 net_rx(struct net_device *dev) in net_rx()
530 net_close(struct net_device *dev) in net_close()
551 net_get_stats(struct net_device *dev) in net_get_stats()
564 static void set_multicast_list(struct net_device *dev) in set_multicast_list()
587 static int set_mac_address(struct net_device *dev, void *addr) in set_mac_address()
607 static struct net_device *dev_cs89x0;