summaryrefslogtreecommitdiffstats
path: root/src/drivers/intel/fsp1_1/verstage.c
blob: c36ac473890c4cd9f42e297a8a3f6b73f615e714 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <fsp/car.h>
#include <program_loading.h>

void *cache_as_ram_stage_main(FSP_INFO_HEADER *fih)
{
	run_romstage();
	/* Will actually never return. */
	return NULL;
}