Lines Matching defs:macb_device
102 struct macb_device { struct
103 void *regs;
105 unsigned int rx_tail;
106 unsigned int tx_head;
107 unsigned int tx_tail;
108 unsigned int next_rx_tail;
109 bool wrapped;
111 void *rx_buffer;
112 void *tx_buffer;
113 struct macb_dma_desc *rx_ring;
114 struct macb_dma_desc *tx_ring;
116 unsigned long rx_buffer_dma;
117 unsigned long rx_ring_dma;
141 #define to_macb(_nd) container_of(_nd, struct macb_device, netdev) argument