Create a branch for header work.
[reactos.git] / ntoskrnl / ke / i386 / mtrr.c
1 /*
2 * PROJECT: ReactOS Kernel
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: ntoskrnl/ke/i386/mtrr.c
5 * PURPOSE: Support for MTRR and AMD K6 MTRR
6 * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 #include <ntoskrnl.h>
12 #define NDEBUG
13 #include <debug.h>
14
15 /* GLOBALS *******************************************************************/
16
17 /* FUNCTIONS *****************************************************************/
18
19 VOID
20 NTAPI
21 KiInitializeMTRR(IN BOOLEAN FinalCpu)
22 {
23 /* FIXME: Support this */
24 DPRINT1("MTRR support detected but not yet taken advantage of\n");
25 }
26
27 VOID
28 NTAPI
29 KiAmdK6InitializeMTRR(VOID)
30 {
31 /* FIXME: Support this */
32 DPRINT1("AMD MTRR support detected but not yet taken advantage of\n");
33 }