mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
5c7ce4475e
- Change INIT_FUNCTION and INIT_SECTION to CODE_SEG("INIT") and DATA_SEG("INIT") respectively - Remove INIT_FUNCTION from function prototypes - Remove alloc_text pragma calls as they are not needed anymore
36 lines
894 B
C
36 lines
894 B
C
/*
|
|
* PROJECT: ReactOS Kernel
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: ntoskrnl/ke/i386/mtrr.c
|
|
* PURPOSE: Support for MTRR and AMD K6 MTRR
|
|
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <ntoskrnl.h>
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
/* GLOBALS *******************************************************************/
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
CODE_SEG("INIT")
|
|
VOID
|
|
NTAPI
|
|
KiInitializeMTRR(IN BOOLEAN FinalCpu)
|
|
{
|
|
/* FIXME: Support this */
|
|
DPRINT("MTRR support detected but not yet taken advantage of\n");
|
|
}
|
|
|
|
CODE_SEG("INIT")
|
|
VOID
|
|
NTAPI
|
|
KiAmdK6InitializeMTRR(VOID)
|
|
{
|
|
/* FIXME: Support this */
|
|
DPRINT("AMD MTRR support detected but not yet taken advantage of\n");
|
|
}
|