From 78a7ea05472b6985f4888e645662e6c975c4662c Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Fri, 6 Sep 2019 23:24:24 +0900 Subject: [PATCH] Remove arch_init() prototype from arch.h --- kernel/core/main.c | 1 + kernel/include/arch.h | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/core/main.c b/kernel/core/main.c index e43a9d9..a105ffe 100644 --- a/kernel/core/main.c +++ b/kernel/core/main.c @@ -22,6 +22,7 @@ #include void cpu_debug(void); +int arch_init(void*); void _print_mptbl(void *tbl) { diff --git a/kernel/include/arch.h b/kernel/include/arch.h index 49ad39c..6b6c65f 100644 --- a/kernel/include/arch.h +++ b/kernel/include/arch.h @@ -21,7 +21,6 @@ #include -int arch_init(void*); int cpu_get_id(void); u64_t cpu_get_capabilities(void); u64_t cpu_timestamp(void); -- 2.47.3