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:
Michael Lotz
2009-02-07 00:11:22 +00:00
parent 09a51729ad
commit f3ed32b7c0
+2 -2
View File
@@ -223,7 +223,7 @@ BUSBEndpoint::IsStalled() const
uint16 status = 0;
Device()->ControlTransfer(USB_REQTYPE_ENDPOINT_IN,
USB_REQUEST_GET_STATUS, USB_FEATURE_ENDPOINT_HALT,
fDescriptor.endpoint_address & 0x0f, sizeof(status), &status);
fDescriptor.endpoint_address, sizeof(status), &status);
return status != 0;
}
@@ -233,5 +233,5 @@ BUSBEndpoint::ClearStall() const
{
return Device()->ControlTransfer(USB_REQTYPE_ENDPOINT_OUT,
USB_REQUEST_CLEAR_FEATURE, USB_FEATURE_ENDPOINT_HALT,
fDescriptor.endpoint_address & 0x0f, 0, NULL);
fDescriptor.endpoint_address, 0, NULL);
}