migrate substitution keywords to SVN
[reactos.git] / reactos / hal / halx86 / mp / resource_mp.c
1 /* $Id$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: hal/halx86/mp/resource_mp.c
6 * PURPOSE: Miscellaneous resource functions for MP
7 * PROGRAMMER: Eric Kohl (ekohl@rz-online.de)
8 */
9
10 /* INCLUDES *****************************************************************/
11
12 #include <ddk/ntddk.h>
13 #include <hal.h>
14
15 #define NDEBUG
16 #include <internal/debug.h>
17
18 /* FUNCTIONS ****************************************************************/
19
20 VOID
21 HaliReconfigurePciInterrupts(VOID);
22
23
24 VOID STDCALL
25 HalReportResourceUsage(VOID)
26 {
27 /*
28 * FIXME: Report all resources used by hal.
29 * Calls IoReportHalResourceUsage()
30 */
31
32 /* Initialize PCI bus. */
33 HalpInitPciBus ();
34
35 HaliReconfigurePciInterrupts();
36 }
37
38 /* EOF */