| 94 | } |
| 95 | |
| 96 | static inline void |
| 97 | nn_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 | |
| 104 | static inline uint8_t |
| 105 | nn_cfg_readb(struct nfp_hw *hw, |
no test coverage detected