Ignore:
Timestamp:
2016-07-22T08:24:47Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f76d2c2
Parents:
5b18137 (diff), 8351f9a4 (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.
Message:

Merge from lp:~jan.vesely/helenos/usb

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/uhci/uhci_batch.c

    r5b18137 rb4b534ac  
    3232 * @brief UHCI driver USB transfer structure
    3333 */
     34
     35#include <assert.h>
    3436#include <errno.h>
    35 #include <str_error.h>
    3637#include <macros.h>
     38#include <mem.h>
     39#include <stdlib.h>
    3740
    3841#include <usb/usb.h>
    3942#include <usb/debug.h>
     43#include <usb/host/endpoint.h>
     44#include <usb/host/utils/malloc32.h>
    4045
    4146#include "uhci_batch.h"
    42 #include "transfer_list.h"
    4347#include "hw_struct/transfer_descriptor.h"
    44 #include "utils/malloc32.h"
    4548
    4649#define DEFAULT_ERROR_COUNT 3
     
    6770        assert(uhci_batch);
    6871        assert(uhci_batch->usb_batch);
     72        assert(!link_in_use(&uhci_batch->link));
    6973        usb_transfer_batch_finish(uhci_batch->usb_batch,
    7074            uhci_transfer_batch_data_buffer(uhci_batch));
Note: See TracChangeset for help on using the changeset viewer.