summaryrefslogtreecommitdiffstats
path: root/src/cpu/x86/cache/cache.c
blob: 7ed3866c93b088e3dd876c2da414d4bb3ae4c48e (plain)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: GPL-2.0-only */

#include <console/console.h>
#include <cpu/x86/cache.h>

void x86_enable_cache(void)
{
	post_code(POST_ENABLING_CACHE);
	printk(BIOS_INFO, "Enabling cache\n");
	enable_cache();
}