• Chris Dickens's avatar
    usb: gadget: composite: remove duplicated code in OS desc handling · 636ba13a
    Chris Dickens authored
    When the host wants to fetch OS descriptors, it sends two requests. The
    first is only for the header and the second for the full amount
    specified by the header in the first request. The OS descriptor handling
    code is distinguishing the header-only requests based on the wLength of
    the setup packet, but the same code is executed in both cases to
    construct the actual header. Simplify this by always constructing the
    header and then filling out the rest of the request if the wLength is
    greater than the size of the header.
    
    Also remove the duplicate code for queueing the request to ep0 by adding
    a goto label.
    Signed-off-by: default avatarChris Dickens <christopher.a.dickens@gmail.com>
    Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
    636ba13a
composite.c 63.2 KB