summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Schnelle <svens@stackframe.org>2011-03-23 15:24:56 +0100
committerGreg Kroah-Hartman <gregkh@suse.de>2011-04-29 17:24:30 -0700
commita8779ee94e6114bf071ef3ca6c8c9cb270d179ed (patch)
treec0657c69a7b713edcfd9b0386cd4c46567f80259
parent83b720199393fe2be38159354ef5a07a1b861e61 (diff)
downloadlinux-3.10-a8779ee94e6114bf071ef3ca6c8c9cb270d179ed.tar.gz
linux-3.10-a8779ee94e6114bf071ef3ca6c8c9cb270d179ed.tar.bz2
linux-3.10-a8779ee94e6114bf071ef3ca6c8c9cb270d179ed.zip
USB: dbpg gadget: dont mask out direction bit
Stripping the direction bit off will produce an invalid descriptor. Signed-off-by: Sven Schnelle <svens@stackframe.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--drivers/usb/gadget/dbgp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/gadget/dbgp.c b/drivers/usb/gadget/dbgp.c
index 795525c3247..dbe92ee8847 100644
--- a/drivers/usb/gadget/dbgp.c
+++ b/drivers/usb/gadget/dbgp.c
@@ -261,8 +261,8 @@ static int __init dbgp_configure_endpoints(struct usb_gadget *gadget)
o_desc.wMaxPacketSize =
__constant_cpu_to_le16(USB_DEBUG_MAX_PACKET_SIZE);
- dbg_desc.bDebugInEndpoint = i_desc.bEndpointAddress & 0x7f;
- dbg_desc.bDebugOutEndpoint = o_desc.bEndpointAddress & 0x7f;
+ dbg_desc.bDebugInEndpoint = i_desc.bEndpointAddress;
+ dbg_desc.bDebugOutEndpoint = o_desc.bEndpointAddress;
#ifdef CONFIG_USB_G_DBGP_SERIAL
dbgp.serial->in = dbgp.i_ep;