From 1892d8b056b624f1568babd8abfa723d6d71bda6 Mon Sep 17 00:00:00 2001 From: Baptiste Wicht Date: Sun, 17 Jul 2016 21:03:38 +0200 Subject: [PATCH] Enable ACPICA local cache --- kernel/include/thor_acpi.hpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/kernel/include/thor_acpi.hpp b/kernel/include/thor_acpi.hpp index b87a74b4..3867981b 100644 --- a/kernel/include/thor_acpi.hpp +++ b/kernel/include/thor_acpi.hpp @@ -11,8 +11,13 @@ // This file contains the OS specific layer for ACPICA for thor-os // It is meant to only be included by thor_acenv -#define ACPI_MACHINE_WIDTH 64 //thor works in 64 bits +//thor works in 64 bits +#define ACPI_MACHINE_WIDTH 64 -#define ACPI_DEBUGGER // Cannot compile ACPICA without this flag for some reason +// Cannot compile ACPICA without this flag for some reason +#define ACPI_DEBUGGER + +// Let APCICA use its own cache +#define ACPI_USE_LOCAL_CACHE #endif