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

Function nn_writeq

dpdk/drivers/common/nfp/nfp_common.h:96–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94}
95
96static inline void
97nn_writeq(uint64_t val,
98 volatile void *addr)
99{
100 nn_writel(val >> 32, (volatile char *)addr + 4);
101 nn_writel(val, addr);
102}
103
104static inline uint8_t
105nn_cfg_readb(struct nfp_hw *hw,

Callers 2

nfp_net_beat_timerFunction · 0.85
nn_cfg_writeqFunction · 0.85

Calls 1

nn_writelFunction · 0.85

Tested by

no test coverage detected