Changeset 834d354 in mainline for uspace/drv/bus/usb/xhci/scratchpad.c


Ignore:
Timestamp:
2017-08-01T13:04:09Z (7 years ago)
Author:
Petr Manek <petr.manek@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6fa91e4c
Parents:
174788f
Message:

Corrected cstyle.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/xhci/scratchpad.c

    r174788f r834d354  
    6868
    6969        uint64_t *phys_array = malloc32(num_bufs * sizeof(uint64_t));
    70         if(phys_array == NULL)
     70        if (phys_array == NULL)
    7171                goto err_phys_array;
    7272
    7373        uint64_t *virt_array = malloc32(num_bufs * sizeof(uint64_t));
    74         if(virt_array == NULL)
     74        if (virt_array == NULL)
    7575                goto err_virt_array;
    7676
     
    118118        xhci_scratchpad_t *scratchpad;
    119119        uint64_t *virt_array;
    120        
     120
    121121        num_bufs = xhci_scratchpad_count(hc);
    122         if(!num_bufs)
     122        if (!num_bufs)
    123123                return;
    124124
Note: See TracChangeset for help on using the changeset viewer.