reactos/reactos/drivers/usb/miniport/common/cleanup.c
2005-09-10 18:04:42 +00:00

26 lines
614 B
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS USB miniport driver (Cromwell type)
* FILE: drivers/usb/miniport/common/cleanup.c
* PURPOSE: IRP_MJ_CLEANUP operations
*
* PROGRAMMERS: Hervé Poussineau (hpoussin@reactos.org)
*/
#define NDEBUG
#include <debug.h>
#include "usbcommon.h"
NTSTATUS STDCALL
UsbMpCleanup(
IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp)
{
DPRINT("USBMP: IRP_MJ_CLEANUP\n");
Irp->IoStatus.Information = 0;
Irp->IoStatus.Status = STATUS_SUCCESS;
IoCompleteRequest(Irp, IO_NO_INCREMENT);
return STATUS_SUCCESS;
}