Fix wrong usage of endpoint address.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29146 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -223,7 +223,7 @@ BUSBEndpoint::IsStalled() const
|
|||||||
uint16 status = 0;
|
uint16 status = 0;
|
||||||
Device()->ControlTransfer(USB_REQTYPE_ENDPOINT_IN,
|
Device()->ControlTransfer(USB_REQTYPE_ENDPOINT_IN,
|
||||||
USB_REQUEST_GET_STATUS, USB_FEATURE_ENDPOINT_HALT,
|
USB_REQUEST_GET_STATUS, USB_FEATURE_ENDPOINT_HALT,
|
||||||
fDescriptor.endpoint_address & 0x0f, sizeof(status), &status);
|
fDescriptor.endpoint_address, sizeof(status), &status);
|
||||||
return status != 0;
|
return status != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -233,5 +233,5 @@ BUSBEndpoint::ClearStall() const
|
|||||||
{
|
{
|
||||||
return Device()->ControlTransfer(USB_REQTYPE_ENDPOINT_OUT,
|
return Device()->ControlTransfer(USB_REQTYPE_ENDPOINT_OUT,
|
||||||
USB_REQUEST_CLEAR_FEATURE, USB_FEATURE_ENDPOINT_HALT,
|
USB_REQUEST_CLEAR_FEATURE, USB_FEATURE_ENDPOINT_HALT,
|
||||||
fDescriptor.endpoint_address & 0x0f, 0, NULL);
|
fDescriptor.endpoint_address, 0, NULL);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user