• Bryan O'Donoghue's avatar
    USB: fix g_serial small error · 8356f311
    Bryan O'Donoghue authored
    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: default avatarBryan O'Donoghue <bodonoghue@codehermit.ie>
    Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
    8356f311
serial.c 58.1 KB