mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
27 lines
747 B
C
27 lines
747 B
C
/*
|
|
* PROJECT: ReactOS Kernel
|
|
* LICENSE: BSD - See COPYING.ARM in the top level directory
|
|
* 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)
|
|
{
|
|
//
|
|
// Nothing to do on ARM
|
|
//
|
|
return STATUS_SUCCESS;
|
|
}
|