MCPcopy Create free account
hub / github.com/F-Stack/f-stack / eth_bare_write

Function eth_bare_write

freebsd/arm/mv/mv_common.c:1618–1627  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1616}
1617
1618static void
1619eth_bare_write(uint32_t base, int i, int val)
1620{
1621 uint32_t v;
1622
1623 v = win_eth_bare_read(base);
1624 v &= ~(1 << i);
1625 v |= (val << i);
1626 win_eth_bare_write(base, v);
1627}
1628
1629static void
1630eth_epap_write(uint32_t base, int i, int val)

Callers 1

decode_win_eth_setupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected