implemented some stubs needed by ClamWin
[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 <hal.h>
13 #define NDEBUG
14 #include <debug.h>
15
16 /* FUNCTIONS ****************************************************************/
17
18 VOID
19 HaliReconfigurePciInterrupts(VOID);
20
21
22 VOID STDCALL
23 HalReportResourceUsage(VOID)
24 {
25 /*
26 * FIXME: Report all resources used by hal.
27 * Calls IoReportHalResourceUsage()
28 */
29
30 /* Initialize PCI bus. */
31 HalpInitPciBus ();
32
33 HaliReconfigurePciInterrupts();
34 }
35
36 /* EOF */