Home | History | Annotate | Download | only in net

Lines Matching refs:txIdx

131 	while ((info->txbd[info->txIdx].cbd_sc & BD_ENET_TX_READY) &&
140 info->txbd[info->txIdx].cbd_bufaddr = (uint) packet;
141 info->txbd[info->txIdx].cbd_datlen = length;
142 info->txbd[info->txIdx].cbd_sc |= BD_ENET_TX_RDY_LST;
164 while ((info->txbd[info->txIdx].cbd_sc & BD_ENET_TX_READY) &&
176 info->txbd[info->txIdx].cbd_sc,
177 (info->txbd[info->txIdx].cbd_sc & 0x003C) >> 2);
181 rc = (info->txbd[info->txIdx].cbd_sc & BD_ENET_TX_STATS);
182 info->txIdx = (info->txIdx + 1) % TX_BUF_CNT;
469 info->txIdx = 0;
531 info->rxIdx = info->txIdx = 0;