Changeset 479e32d in mainline for uspace/lib


Ignore:
Timestamp:
2017-11-01T13:01:34Z (8 years ago)
Author:
Ondřej Hlavatý <aearsis@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
41df71f9
Parents:
17873ac7
Message:

ddf: removed usbhc iface

As it is currently not used anywhere. It will be created again to serve its original purpose, this commit clears all invalid leftovers.

Location:
uspace/lib
Files:
3 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/ipc/dev_iface.h

    r17873ac7 r479e32d  
    5656        /** Interface provided by any USB device. */
    5757        USB_DEV_IFACE,
    58         /** Interface provided by USB host controller. */
    59         USBHC_DEV_IFACE,
    6058        /** Interface provided by USB HID devices. */
    6159        USBHID_DEV_IFACE,
  • uspace/lib/drv/Makefile

    r17873ac7 r479e32d  
    5252        generic/remote_usb.c \
    5353        generic/remote_pci.c \
    54         generic/remote_usbhc.c \
    5554        generic/remote_usbhid.c \
    5655        generic/remote_clock_dev.c \
  • uspace/lib/drv/generic/dev_iface.c

    r17873ac7 r479e32d  
    4949#include "remote_ieee80211.h"
    5050#include "remote_usb.h"
    51 #include "remote_usbhc.h"
    5251#include "remote_usbhid.h"
    5352#include "remote_pci.h"
     
    6766                [PCI_DEV_IFACE] = &remote_pci_iface,
    6867                [USB_DEV_IFACE] = &remote_usb_iface,
    69                 [USBHC_DEV_IFACE] = &remote_usbhc_iface,
    7068                [USBHID_DEV_IFACE] = &remote_usbhid_iface,
    7169                [CLOCK_DEV_IFACE] = &remote_clock_dev_iface,
  • uspace/lib/usbhost/include/usb/host/hcd.h

    r17873ac7 r479e32d  
    4343
    4444#include <assert.h>
    45 #include <usbhc_iface.h>
     45#include <mem.h>
    4646#include <stddef.h>
    4747#include <stdint.h>
  • uspace/lib/usbhost/include/usb/host/usb_transfer_batch.h

    r17873ac7 r479e32d  
    4444#include <errno.h>
    4545#include <stdint.h>
    46 #include <usbhc_iface.h>
    4746
    4847#define USB_SETUP_PACKET_SIZE 8
  • uspace/lib/usbhost/src/usb_transfer_batch.c

    r17873ac7 r479e32d  
    3939
    4040#include <assert.h>
     41#include <stdlib.h>
    4142#include <errno.h>
    4243#include <str_error.h>
Note: See TracChangeset for help on using the changeset viewer.