Lines Matching refs:net_device
196 void (*rx)(struct net_device *dev, int bufnum,
198 int (*build_header)(struct sk_buff *skb, struct net_device *dev,
202 int (*prepare_tx)(struct net_device *dev, struct archdr *pkt,
204 int (*continue_tx)(struct net_device *dev, int bufnum);
205 int (*ack_tx)(struct net_device *dev, int acked);
267 struct net_device *dev;
318 void (*command)(struct net_device *dev, int cmd);
319 int (*status)(struct net_device *dev);
320 void (*intmask)(struct net_device *dev, int mask);
321 int (*reset)(struct net_device *dev, int really_reset);
322 void (*open)(struct net_device *dev);
323 void (*close)(struct net_device *dev);
324 void (*datatrigger) (struct net_device * dev, int enable);
325 void (*recontrigger) (struct net_device * dev, int enable);
327 void (*copy_to_card)(struct net_device *dev, int bufnum,
329 void (*copy_from_card)(struct net_device *dev, int bufnum,
343 void arcnet_led_event(struct net_device *netdev, enum arcnet_led_event event);
344 void devm_arcnet_led_init(struct net_device *netdev, int index, int subid);
347 void arcnet_dump_skb(struct net_device *dev, struct sk_buff *skb, char *desc);
350 void arcnet_dump_skb(struct net_device *dev, struct sk_buff *skb, char *desc) in arcnet_dump_skb()
358 struct net_device *alloc_arcdev(const char *name);
359 void free_arcdev(struct net_device *dev);
361 int arcnet_open(struct net_device *dev);
362 int arcnet_close(struct net_device *dev);
364 struct net_device *dev);
365 void arcnet_timeout(struct net_device *dev, unsigned int txqueue);
367 static inline void arcnet_set_addr(struct net_device *dev, u8 addr) in arcnet_set_addr()