| 25 | } |
| 26 | |
| 27 | void rt_hw_cpu_icache_ops(int ops, void *addr, int size) |
| 28 | { |
| 29 | if (ops == RT_HW_CACHE_INVALIDATE) |
| 30 | { |
| 31 | rt_hw_cpu_icache_invalidate(addr, size); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | void rt_hw_cpu_dcache_ops(int ops, void *addr, int size) |
| 36 | { |
nothing calls this directly
no test coverage detected