Searched refs:bdr (Results 1 – 3 of 3) sorted by relevance
121 static inline void enetc_bdr_idx_inc(struct enetc_bdr *bdr, int *i) in enetc_bdr_idx_inc() argument123 if (unlikely(++*i == bdr->bd_count)) in enetc_bdr_idx_inc()127 static inline int enetc_bd_unused(struct enetc_bdr *bdr) in enetc_bd_unused() argument129 if (bdr->next_to_clean > bdr->next_to_use) in enetc_bd_unused()130 return bdr->next_to_clean - bdr->next_to_use - 1; in enetc_bd_unused()132 return bdr->bd_count + bdr->next_to_clean - bdr->next_to_use - 1; in enetc_bd_unused()135 static inline int enetc_swbd_unused(struct enetc_bdr *bdr) in enetc_swbd_unused() argument137 if (bdr->next_to_clean > bdr->next_to_alloc) in enetc_swbd_unused()138 return bdr->next_to_clean - bdr->next_to_alloc - 1; in enetc_swbd_unused()140 return bdr->bd_count + bdr->next_to_clean - bdr->next_to_alloc - 1; in enetc_swbd_unused()
2763 struct enetc_bdr *bdr; in enetc_alloc_msix() local2774 bdr = &v->rx_ring; in enetc_alloc_msix()2775 bdr->index = i; in enetc_alloc_msix()2776 bdr->ndev = priv->ndev; in enetc_alloc_msix()2777 bdr->dev = priv->dev; in enetc_alloc_msix()2780 priv->rx_ring[i] = bdr; in enetc_alloc_msix()2812 bdr = &v->tx_ring[j]; in enetc_alloc_msix()2813 bdr->index = idx; in enetc_alloc_msix()2814 bdr->ndev = priv->ndev; in enetc_alloc_msix()2815 bdr->dev = priv->dev; in enetc_alloc_msix()[all …]
293 u32 bdr; in tda10086_set_symbol_rate() local340 bdr = big & 0xfffff; in tda10086_set_symbol_rate()348 tda10086_write_byte(state, 0x06, bdr); in tda10086_set_symbol_rate()349 tda10086_write_byte(state, 0x07, bdr >> 8); in tda10086_set_symbol_rate()350 tda10086_write_byte(state, 0x08, bdr >> 16); in tda10086_set_symbol_rate()
Completed in 13 milliseconds