mirror of
https://github.com/reactos/reactos.git
synced 2025-06-03 08:20:27 +00:00
26 lines
614 B
C
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;
|
|
}
|