| 155 | /** CCP registers Write/Read */ |
| 156 | |
| 157 | static inline void ccp_pci_reg_write(void *base, int offset, |
| 158 | uint32_t value) |
| 159 | { |
| 160 | volatile void *reg_addr = ((uint8_t *)base + offset); |
| 161 | |
| 162 | rte_write32((rte_cpu_to_le_32(value)), reg_addr); |
| 163 | } |
| 164 | |
| 165 | static inline uint32_t ccp_pci_reg_read(void *base, int offset) |
| 166 | { |
nothing calls this directly
no test coverage detected