Reorganise HAL so multiple HAL versions can be built in parallel
[reactos.git] / reactos / hal / halx86 / generic / resource.c
1 /* $Id: resource.c,v 1.1 2004/12/03 20:10:43 gvg Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: hal/halx86/generic/resource.c
6 * PURPOSE: Miscellaneous resource functions
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 STDCALL
21 HalReportResourceUsage(VOID)
22 {
23 /*
24 * FIXME: Report all resources used by hal.
25 * Calls IoReportHalResourceUsage()
26 */
27
28 /* Initialize PCI bus. */
29 HalpInitPciBus ();
30 }
31
32 /* EOF */