Code cleanup:
[reactos.git] / reactos / drivers / usb / miniport / common / cleanup.c
diff --git a/reactos/drivers/usb/miniport/common/cleanup.c b/reactos/drivers/usb/miniport/common/cleanup.c
deleted file mode 100644 (file)
index 57b5534..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * 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;
-}