Ignore:
Timestamp:
2018-01-22T12:20:14Z (6 years ago)
Author:
Ondřej Hlavatý <aearsis@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
998773d
Parents:
b3c39690
git-author:
Ondřej Hlavatý <aearsis@…> (2018-01-22 12:18:02)
git-committer:
Ondřej Hlavatý <aearsis@…> (2018-01-22 12:20:14)
Message:

typo: transferred is spelled with two r

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ohci/ohci_batch.c

    rb3c39690 rdb51a6a6  
    187187
    188188        /* Assume all data got through */
    189         ohci_batch->base.transfered_size = ohci_batch->base.buffer_size;
     189        ohci_batch->base.transferred_size = ohci_batch->base.buffer_size;
    190190
    191191        /* Assume we will leave the last(unused) TD behind */
     
    213213                         * we leave the very last(unused) TD behind.
    214214                         */
    215                         ohci_batch->base.transfered_size
     215                        ohci_batch->base.transferred_size
    216216                            -= td_remain_size(ohci_batch->tds[i]);
    217217                } else {
     
    244244                }
    245245        }
    246         assert(ohci_batch->base.transfered_size <=
     246        assert(ohci_batch->base.transferred_size <=
    247247            ohci_batch->base.buffer_size);
    248248
     
    254254                memcpy(ohci_batch->base.buffer,
    255255                    ohci_batch->device_buffer + setup_size,
    256                     ohci_batch->base.transfered_size);
     256                    ohci_batch->base.transferred_size);
    257257
    258258        /* Store the remaining TD */
Note: See TracChangeset for help on using the changeset viewer.