Home
last modified time | relevance | path

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

/haiku/src/add-ons/kernel/drivers/network/ether/broadcom570x/dev/bce/
H A Dif_bcereg.h6091 #define USABLE_RX_BD_PER_PAGE (TOTAL_RX_BD_PER_PAGE - 1) macro
6094 #define USABLE_RX_BD_ALLOC (USABLE_RX_BD_PER_PAGE * sc->rx_pages)
6098 #define NEXT_RX_BD(x) (((x) & USABLE_RX_BD_PER_PAGE) == \
6099 (USABLE_RX_BD_PER_PAGE - 1)) ? (x) + 2 : (x) + 1
6103 #define RX_PAGE(x) (((x) & ~USABLE_RX_BD_PER_PAGE) >> (BCM_PAGE_BITS - 4))
6104 #define RX_IDX(x) ((x) & USABLE_RX_BD_PER_PAGE)