00001 /*++ 00002 00003 Copyright (c) 1990, 1991 Microsoft Corporation 00004 00005 00006 Module Name: 00007 00008 init.c 00009 00010 Abstract: 00011 00012 This module is responsible to build any mips specific entries in 00013 the hardware tree of registry which the arc environment doesn't 00014 normally provide for. 00015 00016 Author: 00017 00018 Ken Reneris (kenr) 04-Aug-1992 00019 00020 00021 Environment: 00022 00023 Kernel mode. 00024 00025 Revision History: 00026 00027 --*/ 00028 00029 #include "cmp.h" 00030 00031 00032 NTSTATUS 00033 CmpInitializeMachineDependentConfiguration( 00034 IN PLOADER_PARAMETER_BLOCK LoaderBlock 00035 ) 00036 /*++ 00037 00038 Routine Description: 00039 00040 This routine creates mips specific entries in the registry. 00041 00042 Arguments: 00043 00044 LoaderBlock - supplies a pointer to the LoaderBlock passed in from the 00045 OS Loader. 00046 00047 Returns: 00048 00049 NTSTATUS code for sucess or reason of failure. 00050 00051 --*/ 00052 { 00053 return STATUS_SUCCESS; 00054 }