diff options
author | Thomas Gleixner | 2023-06-14 01:39:38 +0200 |
---|---|---|
committer | Thomas Gleixner | 2023-06-16 10:16:00 +0200 |
commit | 61235b24b9cb37c13fcad5b9596d59a1afdcec30 (patch) | |
tree | d2f9d9e99205868ad0328a29a64b5d68ecdad24b /init | |
parent | 9349b5cd0908f8afe95529fc7a8cbb1417df9b0c (diff) |
init: Remove check_bugs() leftovers
Everything is converted over to arch_cpu_finalize_init(). Remove the
check_bugs() leftovers including the empty stubs in asm-generic, alpha,
parisc, powerpc and xtensa.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Link: https://lore.kernel.org/r/20230613224545.553215951@linutronix.de
Diffstat (limited to 'init')
-rw-r--r-- | init/main.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/init/main.c b/init/main.c index 77d53167f4c7..389ac6248677 100644 --- a/init/main.c +++ b/init/main.c @@ -103,7 +103,6 @@ #include <net/net_namespace.h> #include <asm/io.h> -#include <asm/bugs.h> #include <asm/setup.h> #include <asm/sections.h> #include <asm/cacheflush.h> @@ -1079,10 +1078,6 @@ asmlinkage __visible void __init __no_sanitize_address __noreturn start_kernel(v delayacct_init(); arch_cpu_finalize_init(); - /* Temporary conditional until everything has been converted */ -#ifndef CONFIG_ARCH_HAS_CPU_FINALIZE_INIT - check_bugs(); -#endif acpi_subsystem_init(); arch_post_acpi_subsys_init(); |