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

Function wr32m

dpdk/drivers/net/txgbe/base/txgbe_regs.h:1836–1842  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1834}
1835
1836static inline void
1837wr32m(struct txgbe_hw *hw, u32 reg, u32 mask, u32 field)
1838{
1839 u32 val = rd32(hw, reg);
1840 val = ((val & ~mask) | (field & mask));
1841 wr32(hw, reg, val);
1842}
1843
1844static inline u64
1845rd64(struct txgbe_hw *hw, u32 reg)

Callers 15

txgbe_hic_unlockedFunction · 0.70
txgbe_virt_clr_regFunction · 0.70
txgbe_stop_hw_vfFunction · 0.70
txgbe_setup_fcFunction · 0.70
txgbe_disable_rxFunction · 0.70
txgbe_enable_rxFunction · 0.70
txgbe_reset_miscFunction · 0.70
txgbe_reinit_fdir_tablesFunction · 0.70
txgbe_set_link_to_kx4Function · 0.70
txgbe_set_link_to_kxFunction · 0.70

Calls 2

rd32Function · 0.70
wr32Function · 0.70

Tested by

no test coverage detected