#[inline(always)]
pub(super) fn arch_cache_init() {
unreachable!()
}
#[inline(always)]
pub(super) fn arch_dcache_line_size() -> usize {
unreachable!()
}
#[inline(always)]
pub(super) fn arch_clean_dcache_area(_addr: usize, _size: usize) {
unreachable!()
}
#[inline(always)]
pub(super) fn arch_inval_dcache_area(_addr: usize, _size: usize) {
unreachable!()
}
#[inline(always)]
pub(super) fn arch_flush_dcache_area(_addr: usize, _size: usize) {
unreachable!()
}
#[inline(always)]
pub(super) fn arch_flush_icache_all() {
unreachable!()
}
#[inline(always)]
pub(super) fn arch_flush_icache_range(_start: usize, _end: usize) {
unreachable!()
}