| 138 | } |
| 139 | |
| 140 | static __rte_always_inline void |
| 141 | rte_write8(uint8_t value, volatile void *addr) |
| 142 | { |
| 143 | rte_io_wmb(); |
| 144 | rte_write8_relaxed(value, addr); |
| 145 | } |
| 146 | |
| 147 | static __rte_always_inline void |
| 148 | rte_write16(uint16_t value, volatile void *addr) |
no test coverage detected