| 145 | } |
| 146 | |
| 147 | static __rte_always_inline void |
| 148 | rte_write16(uint16_t value, volatile void *addr) |
| 149 | { |
| 150 | rte_io_wmb(); |
| 151 | rte_write16_relaxed(value, addr); |
| 152 | } |
| 153 | |
| 154 | static __rte_always_inline void |
| 155 | rte_write32(uint32_t value, volatile void *addr) |
no test coverage detected