Lines Matching refs:TLanList

314 static void	TLan_PrintList( TLanList *, char *, int );
847 * ( sizeof(TLanList) + TLAN_MAX_FRAME_SIZE ); in TLan_Init()
850 * ( sizeof(TLanList) ); in TLan_Init()
861 priv->rxList = (TLanList *) in TLan_Init()
865 priv->txListDMA = priv->rxListDMA + sizeof(TLanList) * TLAN_NUM_RX_LISTS; in TLan_Init()
868 priv->rxBufferDMA =priv->txListDMA + sizeof(TLanList) * TLAN_NUM_TX_LISTS; in TLan_Init()
1052 TLanList *tail_list; in TLan_StartTx()
1065 tail_list_phys = priv->txListDMA + sizeof(TLanList) * priv->txTail; in TLan_StartTx()
1395 TLanList *head_list; in TLan_HandleTxEOF()
1430 head_list_phys = priv->txListDMA + sizeof(TLanList) * priv->txHead; in TLan_HandleTxEOF()
1519 TLanList *head_list; in TLan_HandleRxEOF()
1521 TLanList *tail_list; in TLan_HandleRxEOF()
1529 head_list_phys = priv->rxListDMA + sizeof(TLanList) * priv->rxHead; in TLan_HandleRxEOF()
1592 head_list_phys = priv->rxListDMA + sizeof(TLanList) * priv->rxHead; in TLan_HandleRxEOF()
1604 head_list_phys = priv->rxListDMA + sizeof(TLanList) * priv->rxHead; in TLan_HandleRxEOF()
1683 TLanList *head_list; in TLan_HandleTxEOC()
1691 head_list_phys = priv->txListDMA + sizeof(TLanList) * priv->txHead; in TLan_HandleTxEOC()
1811 head_list_phys = priv->rxListDMA + sizeof(TLanList) * priv->rxHead; in TLan_HandleRxEOC()
1948 TLanList *list; in TLan_ResetLists()
1973 list_phys = priv->rxListDMA + sizeof(TLanList) * i; in TLan_ResetLists()
1996 list->forward = list_phys + sizeof(TLanList); in TLan_ResetLists()
2008 TLanList *list; in TLan_FreeLists()
2088 void TLan_PrintList( TLanList *list, char *type, int num) in TLan_PrintList()