[CLT2012]
[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 INIT_FUNCTION
22 KiInitializeMTRR(IN BOOLEAN FinalCpu)
23 {
24 /* FIXME: Support this */
25 DPRINT("MTRR support detected but not yet taken advantage of\n");
26 }
27
28 VOID
29 NTAPI
30 INIT_FUNCTION
31 KiAmdK6InitializeMTRR(VOID)
32 {
33 /* FIXME: Support this */
34 DPRINT("AMD MTRR support detected but not yet taken advantage of\n");
35 }