Lines Matching refs:net_device

199 	void (*rx)(struct net_device *dev, int bufnum,
201 int (*build_header)(struct sk_buff *skb, struct net_device *dev,
205 int (*prepare_tx)(struct net_device *dev, struct archdr *pkt,
207 int (*continue_tx)(struct net_device *dev, int bufnum);
208 int (*ack_tx)(struct net_device *dev, int acked);
270 struct net_device *dev;
321 void (*command)(struct net_device *dev, int cmd);
322 int (*status)(struct net_device *dev);
323 void (*intmask)(struct net_device *dev, int mask);
324 int (*reset)(struct net_device *dev, int really_reset);
325 void (*open)(struct net_device *dev);
326 void (*close)(struct net_device *dev);
327 void (*datatrigger) (struct net_device * dev, int enable);
328 void (*recontrigger) (struct net_device * dev, int enable);
330 void (*copy_to_card)(struct net_device *dev, int bufnum,
332 void (*copy_from_card)(struct net_device *dev, int bufnum,
346 void arcnet_led_event(struct net_device *netdev, enum arcnet_led_event event);
347 void devm_arcnet_led_init(struct net_device *netdev, int index, int subid);
350 void arcnet_dump_skb(struct net_device *dev, struct sk_buff *skb, char *desc);
353 void arcnet_dump_skb(struct net_device *dev, struct sk_buff *skb, char *desc) in arcnet_dump_skb()
361 struct net_device *alloc_arcdev(const char *name);
362 void free_arcdev(struct net_device *dev);
364 int arcnet_open(struct net_device *dev);
365 int arcnet_close(struct net_device *dev);
367 struct net_device *dev);
368 void arcnet_timeout(struct net_device *dev, unsigned int txqueue);
370 static inline void arcnet_set_addr(struct net_device *dev, u8 addr) in arcnet_set_addr()