Implement Root Bus FDO AddDevice codes, get boot config, connect to HAL or ACPI confi...
[reactos.git] / reactos / drivers / bus / pcix / dispatch.c
1 /*
2 * PROJECT: ReactOS PCI Bus Driver
3 * LICENSE: BSD - See COPYING.ARM in the top level directory
4 * FILE: drivers/bus/pci/dispatch.c
5 * PURPOSE: WDM Dispatch Routines
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 PciDispatchIrp(IN PDEVICE_OBJECT DeviceObject,
22 IN PIRP Irp)
23 {
24 /* This function is not yet implemented */
25 UNIMPLEMENTED;
26 while (TRUE);
27 return STATUS_SUCCESS;
28 }
29
30 NTSTATUS
31 NTAPI
32 PciIrpNotSupported(IN PIRP Irp,
33 IN PIO_STACK_LOCATION IoStackLocation,
34 IN PPCI_FDO_EXTENSION DeviceExtension)
35 {
36 /* Not supported */
37 DPRINT1("WARNING: PCI received unsupported IRP!\n");
38 DbgBreakPoint();
39 return STATUS_NOT_SUPPORTED;
40 }
41
42 /* EOF */