[FLOPPY] Don't wait forever while trying to determine media type.
[reactos.git] / hal / halx86 / amd64 / halinit.c
1 /*
2 * PROJECT: ReactOS HAL
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: hal/halx86/amd64/halinit.c
5 * PURPOSE: HAL Entrypoint and Initialization
6 * PROGRAMMERS:
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 #include <hal.h>
12 #define NDEBUG
13 #include <debug.h>
14
15 /* GLOBALS *******************************************************************/
16
17 BOOLEAN HalpPciLockSettings;
18
19 /* PRIVATE FUNCTIONS *********************************************************/
20
21 /* FUNCTIONS *****************************************************************/
22 #if 0
23 VOID
24 NTAPI
25 HalpInitProcessor(
26 IN ULONG ProcessorNumber,
27 IN PLOADER_PARAMETER_BLOCK LoaderBlock)
28 {
29 DPRINT1("ApicInitializeProcessor(%ld)\n", ProcessorNumber);
30
31 /* Initialize the local APIC for this cpu */
32 ApicInitializeLocalApic(ProcessorNumber);
33
34 /* Initialize the timer */
35 //ApicInitializeTimer(ProcessorNumber);
36
37 }
38
39
40 VOID
41 HalpInitPhase0(IN PLOADER_PARAMETER_BLOCK LoaderBlock)
42 {
43
44 }
45
46 VOID
47 HalpInitPhase1(VOID)
48 {
49
50 }
51
52 #endif
53