blob: 1df9e08014d11a41130d53d5b2acee1d4507d8f5 [file] [log] [blame]
Eric Biedermanfcd5ace2004-10-14 19:29:29 +00001#include <console/console.h>
2#include <cpu/x86/cache.h>
3
4void x86_enable_cache(void)
5{
Vikram Narayanan0713ca32012-01-23 01:44:44 +05306 post_code(POST_ENABLING_CACHE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00007 printk(BIOS_INFO, "Enabling cache\n");
Eric Biedermanfcd5ace2004-10-14 19:29:29 +00008 enable_cache();
9}