sync with trunk r47346
[reactos.git] / drivers / bus / pcix / init.c
1 /*
2 * PROJECT: ReactOS PCI Bus Driver
3 * LICENSE: BSD - See COPYING.ARM in the top level directory
4 * FILE: drivers/bus/pci/init.c
5 * PURPOSE: Driver Initialization
6 * PROGRAMMERS: ReactOS Portable Systems Group
7 */
8
9 /* INCLUDES *******************************************************************/
10
11 #include <pci.h>
12 #define NDEBUG
13 #include <debug.h>
14
15 /* GLOBALS ********************************************************************/
16
17 /* FUNCTIONS ******************************************************************/
18
19 NTSTATUS
20 NTAPI
21 DriverEntry(IN PDRIVER_OBJECT DriverObject,
22 IN PUNICODE_STRING RegistryPath)
23 {
24 DPRINT1("PCI: DriverEntry!\n");
25
26 /* FIXME: TODO */
27 return STATUS_NOT_SUPPORTED;
28 }
29
30 /* EOF */