Changeset 7d521e24 in mainline for uspace/lib/usbdev/include/usb
- Timestamp:
- 2011-05-17T08:54:43Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9f2de92
- Parents:
- 04c418d
- Location:
- uspace/lib/usbdev/include/usb/dev
- Files:
-
- 8 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/include/usb/dev/dp.h
r04c418d r7d521e24 33 33 * USB descriptor parser. 34 34 */ 35 #ifndef LIBUSB _DP_H_36 #define LIBUSB _DP_H_35 #ifndef LIBUSBDEV_DP_H_ 36 #define LIBUSBDEV_DP_H_ 37 37 38 38 #include <sys/types.h> -
uspace/lib/usbdev/include/usb/dev/driver.h
r04c418d r7d521e24 33 33 * USB device driver framework. 34 34 */ 35 #ifndef LIBUSB _DEVDRV_H_36 #define LIBUSB _DEVDRV_H_35 #ifndef LIBUSBDEV_DRIVER_H_ 36 #define LIBUSBDEV_DRIVER_H_ 37 37 38 #include <usb/ pipes.h>38 #include <usb/dev/pipes.h> 39 39 40 40 /** Descriptors for USB device. */ -
uspace/lib/usbdev/include/usb/dev/hc.h
r04c418d r7d521e24 33 33 * General communication between device drivers and host controller driver. 34 34 */ 35 #ifndef LIBUSB _USBDEVICE_H_36 #define LIBUSB _USBDEVICE_H_35 #ifndef LIBUSBDEV_HC_H_ 36 #define LIBUSBDEV_HC_H_ 37 37 38 38 #include <sys/types.h> -
uspace/lib/usbdev/include/usb/dev/hub.h
r04c418d r7d521e24 35 35 * For class specific requests, see usb/classes/hub.h. 36 36 */ 37 #ifndef LIBUSB _HUB_H_38 #define LIBUSB _HUB_H_37 #ifndef LIBUSBDEV_HUB_H_ 38 #define LIBUSBDEV_HUB_H_ 39 39 40 40 #include <sys/types.h> 41 #include <usb/ usbdevice.h>41 #include <usb/dev/hc.h> 42 42 43 43 int 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 33 33 * USB pipes representation. 34 34 */ 35 #ifndef LIBUSB _PIPES_H_36 #define LIBUSB _PIPES_H_35 #ifndef LIBUSBDEV_PIPES_H_ 36 #define LIBUSBDEV_PIPES_H_ 37 37 38 38 #include <sys/types.h> 39 39 #include <usb/usb.h> 40 #include <usb/ usbdevice.h>40 #include <usb/dev/hc.h> 41 41 #include <usb/descriptor.h> 42 42 #include <ipc/devman.h> -
uspace/lib/usbdev/include/usb/dev/poll.h
r04c418d r7d521e24 33 33 * USB device polling functions. 34 34 */ 35 #ifndef LIBUSB _DEVPOLL_H_36 #define LIBUSB _DEVPOLL_H_35 #ifndef LIBUSBDEV_POLL_H_ 36 #define LIBUSBDEV_POLL_H_ 37 37 38 #include <usb/dev drv.h>38 #include <usb/dev/driver.h> 39 39 #include <time.h> 40 40 -
uspace/lib/usbdev/include/usb/dev/recognise.h
r04c418d r7d521e24 33 33 * USB device recognition. 34 34 */ 35 #ifndef LIBUSB _RECOGNISE_H_36 #define LIBUSB _RECOGNISE_H_35 #ifndef LIBUSBDEV_RECOGNISE_H_ 36 #define LIBUSBDEV_RECOGNISE_H_ 37 37 38 38 #include <sys/types.h> 39 39 #include <usb/usb.h> 40 #include <usb/ pipes.h>40 #include <usb/dev/pipes.h> 41 41 #include <ipc/devman.h> 42 42 -
uspace/lib/usbdev/include/usb/dev/request.h
r04c418d r7d521e24 33 33 * Standard USB requests. 34 34 */ 35 #ifndef LIBUSB _REQUEST_H_36 #define LIBUSB _REQUEST_H_35 #ifndef LIBUSBDEV_REQUEST_H_ 36 #define LIBUSBDEV_REQUEST_H_ 37 37 38 38 #include <sys/types.h> 39 39 #include <l18n/langs.h> 40 40 #include <usb/usb.h> 41 #include <usb/ pipes.h>41 #include <usb/dev/pipes.h> 42 42 #include <usb/descriptor.h> 43 43
Note:
See TracChangeset
for help on using the changeset viewer.