Changeset 8fc61c8 in mainline


Ignore:
Timestamp:
2015-07-03T04:00:22Z (9 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ce25903
Parents:
45cbf897
Message:

uhci: Use malloc32 from libusbhost

Location:
uspace/drv/bus/usb/uhci
Files:
1 deleted
5 edited

Legend:

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

    r45cbf897 r8fc61c8  
    4848#include <usb/debug.h>
    4949#include <usb/usb.h>
     50#include <usb/host/utils/malloc32.h>
    5051
    5152#include "uhci_batch.h"
    52 #include "utils/malloc32.h"
    5353#include "hc.h"
    5454
  • uspace/drv/bus/usb/uhci/hw_struct/queue_head.h

    r45cbf897 r8fc61c8  
    3737#include <assert.h>
    3838#include <sys/types.h>
     39#include <usb/host/utils/malloc32.h>
    3940
    4041#include "link_pointer.h"
    4142#include "transfer_descriptor.h"
    42 #include "../utils/malloc32.h"
    4343
    4444/** This structure is defined in UHCI design guide p. 31 */
  • uspace/drv/bus/usb/uhci/hw_struct/transfer_descriptor.c

    r45cbf897 r8fc61c8  
    3838#include <usb/debug.h>
    3939#include <usb/usb.h>
     40#include <usb/host/utils/malloc32.h>
    4041
    4142#include "link_pointer.h"
    4243#include "transfer_descriptor.h"
    43 #include "../utils/malloc32.h"
    4444
    4545/** Initialize Transfer Descriptor
  • uspace/drv/bus/usb/uhci/transfer_list.c

    r45cbf897 r8fc61c8  
    4040#include <usb/debug.h>
    4141#include <usb/host/usb_transfer_batch.h>
    42 
    43 #include "utils/malloc32.h"
     42#include <usb/host/utils/malloc32.h>
     43
    4444#include "hw_struct/link_pointer.h"
    4545#include "transfer_list.h"
  • uspace/drv/bus/usb/uhci/uhci_batch.c

    r45cbf897 r8fc61c8  
    4242#include <usb/debug.h>
    4343#include <usb/host/endpoint.h>
     44#include <usb/host/utils/malloc32.h>
    4445
    4546#include "uhci_batch.h"
    4647#include "hw_struct/transfer_descriptor.h"
    47 #include "utils/malloc32.h"
    4848
    4949#define DEFAULT_ERROR_COUNT 3
Note: See TracChangeset for help on using the changeset viewer.