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

Function readq

dpdk/drivers/net/enic/base/vnic_dev.h:23–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21
22#ifndef readq
23static inline uint64_t readq(void __iomem *reg)
24{
25 return ((uint64_t)readl((char *)reg + 0x4UL) << 32) |
26 (uint64_t)readl(reg);
27}
28
29static inline void writeq(uint64_t val, void __iomem *reg)
30{

Callers 15

_vnic_dev_cmdFunction · 0.70
fme_dperf_get_clockFunction · 0.50
fme_dperf_get_revisionFunction · 0.50
fabric_pobj_is_enabledFunction · 0.50
read_fabric_counterFunction · 0.50
fme_dperf_get_fab_freezeFunction · 0.50
fme_dperf_set_fab_freezeFunction · 0.50
fme_iperf_get_clockFunction · 0.50
fme_iperf_get_revisionFunction · 0.50

Calls 1

readlFunction · 0.50

Tested by

no test coverage detected