Author: tfaber Date: Mon Sep 5 13:06:26 2016 New Revision: 72583
URL: http://svn.reactos.org/svn/reactos?rev=72583&view=rev Log: [USBEHCI] - Correct the definition of END_POINT_CAPABILITIES. Brought to you by Vadim Galyant. CORE-11893 #resolve CORE-9296
Modified: trunk/reactos/drivers/usb/usbehci/hardware.h
Modified: trunk/reactos/drivers/usb/usbehci/hardware.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/usb/usbehci/hardwar... ============================================================================== --- trunk/reactos/drivers/usb/usbehci/hardware.h [iso-8859-1] (original) +++ trunk/reactos/drivers/usb/usbehci/hardware.h [iso-8859-1] Mon Sep 5 13:06:26 2016 @@ -181,8 +181,8 @@ { ULONG InterruptScheduleMask:8; ULONG SplitCompletionMask:8; - ULONG HubAddr:6; - ULONG PortNumber:6; + ULONG HubAddr:7; + ULONG PortNumber:7; ULONG NumberOfTransactionPerFrame:2; } END_POINT_CAPABILITIES, *PEND_POINT_CAPABILITIES;