summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/verstage.c
blob: 633fd8c877fe19dcfcb7759dac6ee761f52094cb (plain)
1
2
3
4
5
6
7
8
9
10
/* SPDX-License-Identifier: GPL-2.0-only */

#include <arch/cpu.h>
#include <main_decl.h>

/* Provide an entry point for verstage when it's a separate stage. */
asmlinkage void car_stage_entry(void)
{
	main();
}