Now that usb_endpoint_maxp() only returns the lowest
11 bits from wMaxPacketSize, we can remove the &
operation from this driver.

Signed-off-by: Felipe Balbi <felipe.ba...@linux.intel.com>
---
 drivers/usb/misc/usbtest.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/misc/usbtest.c b/drivers/usb/misc/usbtest.c
index 8edfbc8bf345..3525626bf086 100644
--- a/drivers/usb/misc/usbtest.c
+++ b/drivers/usb/misc/usbtest.c
@@ -2001,7 +2001,7 @@ test_queue(struct usbtest_dev *dev, struct 
usbtest_param_32 *param,
                        "iso period %d %sframes, wMaxPacket %d, transactions: 
%d\n",
                        1 << (desc->bInterval - 1),
                        (udev->speed == USB_SPEED_HIGH) ? "micro" : "",
-                       usb_endpoint_maxp(desc) & 0x7ff,
+                       usb_endpoint_maxp(desc),
                        usb_endpoint_maxp_mult(desc));
 
                dev_info(&dev->intf->dev,
-- 
2.10.1

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to