diff options
author | Ian Moffett <ian@osmora.org> | 2025-04-18 22:08:24 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-04-18 22:08:24 -0400 |
commit | 03643f46e19ddf6bb770fd76e75244b3101a89ce (patch) | |
tree | 343a00d8f62517d4c73ccc11ae95d940c0f1fb89 /sys/arch/aarch64 | |
parent | 3fc9eeccd3f02067b25dc85e26813c562e0c8102 (diff) |
kernel/aarch64: Add md_sync_all() stub
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/arch/aarch64')
-rw-r--r-- | sys/arch/aarch64/aarch64/machdep.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/arch/aarch64/aarch64/machdep.c b/sys/arch/aarch64/aarch64/machdep.c index 1d34e56..a29ad7e 100644 --- a/sys/arch/aarch64/aarch64/machdep.c +++ b/sys/arch/aarch64/aarch64/machdep.c @@ -30,6 +30,7 @@ #include <sys/syslog.h> #include <sys/panic.h> #include <machine/cpu.h> +#include <machine/sync.h> struct cpu_info g_bsp_ci = {0}; @@ -61,6 +62,13 @@ serial_putc(char c) return; } +int +md_sync_all(void) +{ + /* TODO: STUB */ + return 0; +} + /* * Get the descriptor for the currently * running processor. |