Home
last modified time | relevance | path

Searched refs:bdr (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.10/drivers/net/ethernet/freescale/enetc/
Denetc.h81 static inline void enetc_bdr_idx_inc(struct enetc_bdr *bdr, int *i) in enetc_bdr_idx_inc() argument
83 if (unlikely(++*i == bdr->bd_count)) in enetc_bdr_idx_inc()
87 static inline int enetc_bd_unused(struct enetc_bdr *bdr) in enetc_bd_unused() argument
89 if (bdr->next_to_clean > bdr->next_to_use) in enetc_bd_unused()
90 return bdr->next_to_clean - bdr->next_to_use - 1; in enetc_bd_unused()
92 return bdr->bd_count + bdr->next_to_clean - bdr->next_to_use - 1; in enetc_bd_unused()
Denetc.c1831 struct enetc_bdr *bdr; in enetc_alloc_msix() local
1862 bdr = &v->tx_ring[j]; in enetc_alloc_msix()
1863 bdr->index = idx; in enetc_alloc_msix()
1864 bdr->ndev = priv->ndev; in enetc_alloc_msix()
1865 bdr->dev = priv->dev; in enetc_alloc_msix()
1866 bdr->bd_count = priv->tx_bd_count; in enetc_alloc_msix()
1867 priv->tx_ring[idx] = bdr; in enetc_alloc_msix()
1870 bdr = &v->rx_ring; in enetc_alloc_msix()
1871 bdr->index = i; in enetc_alloc_msix()
1872 bdr->ndev = priv->ndev; in enetc_alloc_msix()
[all …]
/Linux-v5.10/drivers/media/dvb-frontends/
Dtda10086.c293 u32 bdr; in tda10086_set_symbol_rate() local
340 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()