diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2023-08-01 16:07:11 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-08-08 20:04:49 +0200 |
commit | f9a4f2ba337c776b93aa8c7f65fc677f4663e327 (patch) | |
tree | 40f129daf1a79f3677288d42eefe6f0f40771ed5 /include | |
parent | 50455d685b651a9c29f67ed6e2c832ab5f0eab7e (diff) | |
download | linux-stable-f9a4f2ba337c776b93aa8c7f65fc677f4663e327.tar.gz linux-stable-f9a4f2ba337c776b93aa8c7f65fc677f4663e327.tar.bz2 linux-stable-f9a4f2ba337c776b93aa8c7f65fc677f4663e327.zip |
init: Remove check_bugs() leftovers
commit 61235b24b9cb37c13fcad5b9596d59a1afdcec30 upstream
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
Signed-off-by: Daniel Sneddon <daniel.sneddon@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-generic/bugs.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/asm-generic/bugs.h b/include/asm-generic/bugs.h deleted file mode 100644 index 69021830f078..000000000000 --- a/include/asm-generic/bugs.h +++ /dev/null @@ -1,11 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 */ -#ifndef __ASM_GENERIC_BUGS_H -#define __ASM_GENERIC_BUGS_H -/* - * This file is included by 'init/main.c' to check for - * architecture-dependent bugs. - */ - -static inline void check_bugs(void) { } - -#endif /* __ASM_GENERIC_BUGS_H */ |