Rename drivers to their right name
[reactos.git] / reactos / drivers / usb / miniport / usbuhci / cleanup.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS UHCI controller driver (Cromwell type)
4 * FILE: drivers/usb/cromwell/uhci/cleanup.c
5 * PURPOSE: IRP_MJ_CLEANUP operations
6 *
7 * PROGRAMMERS: Hervé Poussineau (hpoussin@reactos.com)
8 */
9
10 #define NDEBUG
11 #include "uhci.h"
12
13 NTSTATUS STDCALL
14 UhciCleanup(
15 IN PDEVICE_OBJECT DeviceObject,
16 IN PIRP Irp)
17 {
18 DPRINT("UHCI: IRP_MJ_CLEANUP\n");
19
20 Irp->IoStatus.Information = 0;
21 Irp->IoStatus.Status = STATUS_SUCCESS;
22 IoCompleteRequest(Irp, IO_NO_INCREMENT);
23 return STATUS_SUCCESS;
24 }