2008-06-15 05:40:27 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS Kernel
|
2008-06-29 02:58:05 +00:00
|
|
|
* LICENSE: BSD - See COPYING.ARM in the top level directory
|
2008-06-15 05:40:27 +00:00
|
|
|
* FILE: ntoskrnl/config/arm/cmhardwr.c
|
|
|
|
* PURPOSE: Configuration Manager - ARM Specific Code
|
|
|
|
* PROGRAMMERS: ReactOS Portable Systems Group
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
|
|
|
|
#include "ntoskrnl.h"
|
|
|
|
#define NDEBUG
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
/* GLOBALS *******************************************************************/
|
|
|
|
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
|
|
|
|
NTSTATUS
|
|
|
|
NTAPI
|
|
|
|
CmpInitializeMachineDependentConfiguration(IN PLOADER_PARAMETER_BLOCK LoaderBlock)
|
|
|
|
{
|
2008-06-26 06:38:42 +00:00
|
|
|
//
|
|
|
|
// Nothing to do on ARM
|
|
|
|
//
|
|
|
|
return STATUS_SUCCESS;
|
2008-06-15 05:40:27 +00:00
|
|
|
}
|