Changeset 7d521e24 in mainline for uspace/lib/usbdev/include/usb


Ignore:
Timestamp:
2011-05-17T08:54:43Z (14 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9f2de92
Parents:
04c418d
Message:

libusbdev uses include usb/dev

Location:
uspace/lib/usbdev/include/usb/dev
Files:
8 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbdev/include/usb/dev/dp.h

    r04c418d r7d521e24  
    3333 * USB descriptor parser.
    3434 */
    35 #ifndef LIBUSB_DP_H_
    36 #define LIBUSB_DP_H_
     35#ifndef LIBUSBDEV_DP_H_
     36#define LIBUSBDEV_DP_H_
    3737
    3838#include <sys/types.h>
  • uspace/lib/usbdev/include/usb/dev/driver.h

    r04c418d r7d521e24  
    3333 * USB device driver framework.
    3434 */
    35 #ifndef LIBUSB_DEVDRV_H_
    36 #define LIBUSB_DEVDRV_H_
     35#ifndef LIBUSBDEV_DRIVER_H_
     36#define LIBUSBDEV_DRIVER_H_
    3737
    38 #include <usb/pipes.h>
     38#include <usb/dev/pipes.h>
    3939
    4040/** Descriptors for USB device. */
  • uspace/lib/usbdev/include/usb/dev/hc.h

    r04c418d r7d521e24  
    3333 * General communication between device drivers and host controller driver.
    3434 */
    35 #ifndef LIBUSB_USBDEVICE_H_
    36 #define LIBUSB_USBDEVICE_H_
     35#ifndef LIBUSBDEV_HC_H_
     36#define LIBUSBDEV_HC_H_
    3737
    3838#include <sys/types.h>
  • uspace/lib/usbdev/include/usb/dev/hub.h

    r04c418d r7d521e24  
    3535 * For class specific requests, see usb/classes/hub.h.
    3636 */
    37 #ifndef LIBUSB_HUB_H_
    38 #define LIBUSB_HUB_H_
     37#ifndef LIBUSBDEV_HUB_H_
     38#define LIBUSBDEV_HUB_H_
    3939
    4040#include <sys/types.h>
    41 #include <usb/usbdevice.h>
     41#include <usb/dev/hc.h>
    4242
    4343int usb_hc_new_device_wrapper(ddf_dev_t *, usb_hc_connection_t *, usb_speed_t,
  • uspace/lib/usbdev/include/usb/dev/pipes.h

    r04c418d r7d521e24  
    3333 * USB pipes representation.
    3434 */
    35 #ifndef LIBUSB_PIPES_H_
    36 #define LIBUSB_PIPES_H_
     35#ifndef LIBUSBDEV_PIPES_H_
     36#define LIBUSBDEV_PIPES_H_
    3737
    3838#include <sys/types.h>
    3939#include <usb/usb.h>
    40 #include <usb/usbdevice.h>
     40#include <usb/dev/hc.h>
    4141#include <usb/descriptor.h>
    4242#include <ipc/devman.h>
  • uspace/lib/usbdev/include/usb/dev/poll.h

    r04c418d r7d521e24  
    3333 * USB device polling functions.
    3434 */
    35 #ifndef LIBUSB_DEVPOLL_H_
    36 #define LIBUSB_DEVPOLL_H_
     35#ifndef LIBUSBDEV_POLL_H_
     36#define LIBUSBDEV_POLL_H_
    3737
    38 #include <usb/devdrv.h>
     38#include <usb/dev/driver.h>
    3939#include <time.h>
    4040
  • uspace/lib/usbdev/include/usb/dev/recognise.h

    r04c418d r7d521e24  
    3333 * USB device recognition.
    3434 */
    35 #ifndef LIBUSB_RECOGNISE_H_
    36 #define LIBUSB_RECOGNISE_H_
     35#ifndef LIBUSBDEV_RECOGNISE_H_
     36#define LIBUSBDEV_RECOGNISE_H_
    3737
    3838#include <sys/types.h>
    3939#include <usb/usb.h>
    40 #include <usb/pipes.h>
     40#include <usb/dev/pipes.h>
    4141#include <ipc/devman.h>
    4242
  • uspace/lib/usbdev/include/usb/dev/request.h

    r04c418d r7d521e24  
    3333 * Standard USB requests.
    3434 */
    35 #ifndef LIBUSB_REQUEST_H_
    36 #define LIBUSB_REQUEST_H_
     35#ifndef LIBUSBDEV_REQUEST_H_
     36#define LIBUSBDEV_REQUEST_H_
    3737
    3838#include <sys/types.h>
    3939#include <l18n/langs.h>
    4040#include <usb/usb.h>
    41 #include <usb/pipes.h>
     41#include <usb/dev/pipes.h>
    4242#include <usb/descriptor.h>
    4343
Note: See TracChangeset for help on using the changeset viewer.