Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8356f3113d2628c98a58180ca183345474a9d011
Commit:     8356f3113d2628c98a58180ca183345474a9d011
Parent:     fc8d91912694859d3e598839af2427ec1287741c
Author:     Bryan O'Donoghue <[EMAIL PROTECTED]>
AuthorDate: Sat Jan 27 12:16:32 2007 +0000
Committer:  Greg Kroah-Hartman <[EMAIL PROTECTED]>
CommitDate: Fri Feb 16 15:32:20 2007 -0800

    USB: fix g_serial small error
    
    A SET_LINE_CODING control request should return a zero length packet
    as an ACK to the host, during the status phase of a USB transaction.
    
    The return value of gs_setup_class() is treated as the number of
    bytes to write in the status phase of the control request, by
    gs_setup(). For this case, the value returned by gs_setup_class should
    be zero for SET_LINE_CODING but, right now, appears to be
    sizeof(struct usb_cdc_line_coding).
    
    However, if after doing the memcpy of the line coding descriptor we
    set the variable "ret" to be zero, we should return the appropiate ZLP
    to the host as an ACK in the status phase of the control request.
    I've tested this out using Linux as both host and slave and confirmed
    that the following small change fixes the spurious return of
    sizeof(struct usb_cdc_line_coding)/wLength bytes in the status phase
    of a USB_CDC_REQ_SET_LINE_CODING request. It's not a huge bug but, it
    is worth fixing.
    
    Signed-off-by: Bryan O'Donoghue <[EMAIL PROTECTED]>
    Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>
---
 drivers/usb/gadget/serial.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/usb/gadget/serial.c b/drivers/usb/gadget/serial.c
index e6c19aa..e552668 100644
--- a/drivers/usb/gadget/serial.c
+++ b/drivers/usb/gadget/serial.c
@@ -1699,6 +1699,7 @@ static int gs_setup_class(struct usb_gadget *gadget,
                        memcpy(&port->port_line_coding, req->buf, ret);
                        spin_unlock(&port->port_lock);
                }
+               ret = 0;
                break;
 
        case USB_CDC_REQ_GET_LINE_CODING:
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to