mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[PCI]
- Add an unload handler to prevent warnings from the I/O manager svn path=/trunk/; revision=56181
This commit is contained in:
@@ -181,6 +181,14 @@ PciAddDevice(
|
||||
}
|
||||
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
PciUnload(
|
||||
IN PDRIVER_OBJECT DriverObject)
|
||||
{
|
||||
/* The driver object extension is destroyed by the I/O manager */
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
DriverEntry(
|
||||
@@ -196,6 +204,7 @@ DriverEntry(
|
||||
DriverObject->MajorFunction[IRP_MJ_PNP] = PciPnpControl;
|
||||
DriverObject->MajorFunction[IRP_MJ_POWER] = PciPowerControl;
|
||||
DriverObject->DriverExtension->AddDevice = PciAddDevice;
|
||||
DriverObject->DriverUnload = PciUnload;
|
||||
|
||||
Status = IoAllocateDriverObjectExtension(
|
||||
DriverObject,
|
||||
|
||||
Reference in New Issue
Block a user