Lines Matching defs:macb_device
87 struct macb_device { struct
88 void *regs;
90 unsigned int rx_tail;
91 unsigned int tx_head;
92 unsigned int tx_tail;
93 unsigned int next_rx_tail;
94 bool wrapped;
96 void *rx_buffer;
97 void *tx_buffer;
98 struct macb_dma_desc *rx_ring;
99 struct macb_dma_desc *tx_ring;
101 unsigned long rx_buffer_dma;
102 unsigned long rx_ring_dma;
126 #define to_macb(_nd) container_of(_nd, struct macb_device, netdev) argument