Changeset eb0dc58 in mainline for uspace/drv/uhci-hcd/batch.c


Ignore:
Timestamp:
2011-03-13T13:59:19Z (14 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6143ce3
Parents:
67352d2
Message:

Doxygen comments, use helper function for setting IOC flag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci-hcd/batch.c

    r67352d2 reb0dc58  
    319319                ++packet;
    320320        }
    321         instance->tds[packet - 1].status |= TD_STATUS_IOC_FLAG;
     321        td_set_ioc(&instance->tds[packet - 1]);
    322322        device_keeper_set_toggle(instance->manager, instance->target, toggle);
    323323}
     
    371371            0, 1, false, low_speed, instance->target, status_stage, NULL, NULL);
    372372
    373 
    374         instance->tds[packet].status |= TD_STATUS_IOC_FLAG;
     373        td_set_ioc(&instance->tds[packet]);
    375374        usb_log_debug2("Control last TD status: %x.\n",
    376375            instance->tds[packet].status);
Note: See TracChangeset for help on using the changeset viewer.