Lines Matching refs:eth_device

214 static void init_rx_ring (struct eth_device *dev);
215 static void purge_tx_ring (struct eth_device *dev);
217 static void read_hw_addr (struct eth_device *dev, bd_t * bis);
219 static int eepro100_init (struct eth_device *dev, bd_t * bis);
220 static int eepro100_send(struct eth_device *dev, void *packet, int length);
221 static int eepro100_recv (struct eth_device *dev);
222 static void eepro100_halt (struct eth_device *dev);
232 static inline int INW (struct eth_device *dev, u_long addr) in INW()
237 static inline void OUTW (struct eth_device *dev, int command, u_long addr) in OUTW()
242 static inline void OUTL (struct eth_device *dev, int command, u_long addr) in OUTL()
248 static inline int INL (struct eth_device *dev, u_long addr) in INL()
253 static int get_phyreg (struct eth_device *dev, unsigned char addr, in get_phyreg()
276 static int set_phyreg (struct eth_device *dev, unsigned char addr, in set_phyreg()
298 static struct eth_device* verify_phyaddr (const char *devname, in verify_phyaddr()
301 struct eth_device *dev; in verify_phyaddr()
332 struct eth_device *dev; in eepro100_miiphy_read()
349 struct eth_device *dev; in eepro100_miiphy_write()
367 static int wait_for_eepro100 (struct eth_device *dev) in wait_for_eepro100()
391 struct eth_device *dev; in eepro100_initialize()
427 dev = (struct eth_device *) malloc (sizeof *dev); in eepro100_initialize()
474 static int eepro100_init (struct eth_device *dev, bd_t * bis) in eepro100_init()
595 static int eepro100_send(struct eth_device *dev, void *packet, int length) in eepro100_send()
653 static int eepro100_recv (struct eth_device *dev) in eepro100_recv()
719 static void eepro100_halt (struct eth_device *dev) in eepro100_halt()
749 static int read_eeprom (struct eth_device *dev, int location, int addr_len) in read_eeprom()
784 int eepro100_write_eeprom (struct eth_device* dev, int location, int addr_len, unsigned short data) in eepro100_write_eeprom()
870 static void init_rx_ring (struct eth_device *dev) in init_rx_ring()
888 static void purge_tx_ring (struct eth_device *dev) in purge_tx_ring()
909 static void read_hw_addr (struct eth_device *dev, bd_t * bis) in read_hw_addr()