forked from luck/tmp_suning_uos_patched
a5b9177f69
Prepare the processor bug infrastructure so that it can be expanded to check for per-processor bugs. Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Boot-tested-by: Tony Lindgren <tony@atomide.com> Reviewed-by: Tony Lindgren <tony@atomide.com> Acked-by: Marc Zyngier <marc.zyngier@arm.com>
10 lines
161 B
C
10 lines
161 B
C
// SPDX-Identifier: GPL-2.0
|
|
#include <linux/init.h>
|
|
#include <asm/bugs.h>
|
|
#include <asm/proc-fns.h>
|
|
|
|
void __init check_bugs(void)
|
|
{
|
|
check_writebuffer_bugs();
|
|
}
|