From 41890ed14be1b23e2cde8eb7341d3a5de56bd163 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Herv=C3=A9=20Poussineau?= Date: Thu, 11 Aug 2005 20:13:26 +0000 Subject: [PATCH] Remove debug output and some useless code Replace false by FALSE svn path=/trunk/; revision=17302 --- reactos/drivers/usb/cromwell/uhci/fdo.c | 13 ------------- reactos/drivers/usb/cromwell/uhci/uhci.c | 2 +- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/reactos/drivers/usb/cromwell/uhci/fdo.c b/reactos/drivers/usb/cromwell/uhci/fdo.c index 75a57d265ed..6e32df48c7b 100644 --- a/reactos/drivers/usb/cromwell/uhci/fdo.c +++ b/reactos/drivers/usb/cromwell/uhci/fdo.c @@ -344,7 +344,6 @@ UhciDeviceControlFdo( &StringSize); if (NT_SUCCESS(Status) || Status == STATUS_BUFFER_TOO_SMALL) { - DPRINT("UHCI: IOCTL_GET_HCD_DRIVERKEY_NAME returns '%S'\n", StringDescriptor->DriverKeyName); StringDescriptor->ActualLength = StringSize + FIELD_OFFSET(USB_HCD_DRIVERKEY_NAME, DriverKeyName); Information = LengthOut; Status = STATUS_SUCCESS; @@ -385,18 +384,6 @@ UhciDeviceControlFdo( } break; } - case IOCTL_USB_GET_NODE_CONNECTION_INFORMATION: - { - DPRINT1("UHCI: IOCTL_USB_GET_NODE_CONNECTION_INFORMATION\n"); - Status = STATUS_NOT_IMPLEMENTED; - break; - } - case IOCTL_USB_GET_NODE_CONNECTION_NAME: - { - DPRINT1("UHCI: IOCTL_USB_GET_NODE_CONNECTION_NAME\n"); - Status = STATUS_NOT_IMPLEMENTED; - break; - } default: { diff --git a/reactos/drivers/usb/cromwell/uhci/uhci.c b/reactos/drivers/usb/cromwell/uhci/uhci.c index 3613155ddd7..4711859efe3 100644 --- a/reactos/drivers/usb/cromwell/uhci/uhci.c +++ b/reactos/drivers/usb/cromwell/uhci/uhci.c @@ -49,7 +49,7 @@ CreateRootHubPdo( DeviceExtension = (POHCI_DEVICE_EXTENSION)Pdo->DeviceExtension; RtlZeroMemory(DeviceExtension, sizeof(OHCI_DEVICE_EXTENSION)); - DeviceExtension->IsFDO = false; + DeviceExtension->IsFDO = FALSE; DeviceExtension->FunctionalDeviceObject = Fdo; Pdo->Flags &= ~DO_DEVICE_INITIALIZING; -- 2.17.1