Ignore:
Timestamp:
2011-09-15T15:05:38Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
db2cb04
Parents:
f58ef61
Message:

usb: Rename device_keeper ⇒ sub-device_manager to match the rest of the library

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbhost/include/usb/host/hcd.h

    rf58ef61 r8b54fe6  
    3737
    3838#include <assert.h>
    39 #include <usb/host/device_keeper.h>
     39#include <usb/host/usb_device_manager.h>
    4040#include <usb/host/usb_endpoint_manager.h>
    4141#include <usb/host/usb_transfer_batch.h>
     
    4545
    4646struct hcd {
    47         usb_device_keeper_t dev_manager;
     47        usb_device_manager_t dev_manager;
    4848        usb_endpoint_manager_t ep_manager;
    4949        void *private_data;
     
    5757{
    5858        assert(hcd);
    59         usb_device_keeper_init(&hcd->dev_manager);
     59        usb_device_manager_init(&hcd->dev_manager);
    6060        return usb_endpoint_manager_init(&hcd->ep_manager, bandwidth, bw_count);
    6161}
Note: See TracChangeset for help on using the changeset viewer.