[arch][x86] stub out the cache routines
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2009 Corey Tabaka
|
* Copyright (c) 2009 Corey Tabaka
|
||||||
|
* Copyright (c) 2024 Travis Geiselbrecht
|
||||||
*
|
*
|
||||||
* Use of this source code is governed by a MIT-style
|
* Use of this source code is governed by a MIT-style
|
||||||
* license that can be found in the LICENSE file or at
|
* license that can be found in the LICENSE file or at
|
||||||
@@ -10,3 +11,13 @@
|
|||||||
/* nothing to do to sync I & D cache on x86 */
|
/* nothing to do to sync I & D cache on x86 */
|
||||||
void arch_sync_cache_range(addr_t start, size_t len) {
|
void arch_sync_cache_range(addr_t start, size_t len) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* for the moment, no cache flushes here either */
|
||||||
|
void arch_clean_cache_range(addr_t start, size_t len) {
|
||||||
|
}
|
||||||
|
|
||||||
|
void arch_clean_invalidate_cache_range(addr_t start, size_t len) {
|
||||||
|
}
|
||||||
|
|
||||||
|
void arch_invalidate_cache_range(addr_t start, size_t len) {
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user