Changeset 8565a42 in mainline for uspace/lib/usbdev/src


Ignore:
Timestamp:
2018-03-02T20:34:50Z (8 years ago)
Author:
GitHub <noreply@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a1a81f69, d5e5fd1
Parents:
3061bc1 (diff), 34e1206 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:34:50)
git-committer:
GitHub <noreply@…> (2018-03-02 20:34:50)
Message:

Remove all trailing whitespace, everywhere.

See individual commit messages for details.

Location:
uspace/lib/usbdev/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbdev/src/pipes.c

    r3061bc1 r8565a42  
    160160        if ((setup == NULL) || (setup_size != 8))
    161161                return EINVAL;
    162        
     162
    163163        memcpy(&t->req.setup, setup, 8);
    164164        return EOK;
  • uspace/lib/usbdev/src/recognise.c

    r3061bc1 r8565a42  
    235235                    (int) device_descriptor->product_id,
    236236                    BCD_ARGS(device_descriptor->device_version));
    237                
     237
    238238                /* Next, without release number. */
    239239                ADD_MATCHID_OR_RETURN(matches, 90,
     
    246246        ADD_MATCHID_OR_RETURN(matches, 50, "usb&class=%s",
    247247            usb_str_class(device_descriptor->device_class));
    248        
     248
    249249        /* As a last resort, try fallback driver. */
    250250        ADD_MATCHID_OR_RETURN(matches, 10, "usb&fallback");
Note: See TracChangeset for help on using the changeset viewer.