Home
last modified time | relevance | path

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

/openbmc/u-boot/drivers/net/
H A Dsh_eth.c255 port_info->rx_desc_alloc = in sh_eth_rx_desc_init()
257 if (!port_info->rx_desc_alloc) { in sh_eth_rx_desc_init()
263 flush_cache_wback(port_info->rx_desc_alloc, alloc_desc_size); in sh_eth_rx_desc_init()
267 (struct rx_desc_s *)ADDR_TO_P2((u32)port_info->rx_desc_alloc); in sh_eth_rx_desc_init()
309 free(port_info->rx_desc_alloc); in sh_eth_rx_desc_init()
310 port_info->rx_desc_alloc = NULL; in sh_eth_rx_desc_init()
330 if (port_info->rx_desc_alloc) { in sh_eth_rx_desc_free()
331 free(port_info->rx_desc_alloc); in sh_eth_rx_desc_free()
332 port_info->rx_desc_alloc = NULL; in sh_eth_rx_desc_free()
H A Dsh_eth.h85 struct rx_desc_s *rx_desc_alloc; member