Changeset 7d521e24 in mainline for uspace/lib
- 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
- Files:
-
- 19 edited
- 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 -
uspace/lib/usbdev/src/altiface.c
r04c418d r7d521e24 33 33 * Handling alternate interface settings. 34 34 */ 35 #include <usb/dev drv.h>36 #include <usb/ request.h>35 #include <usb/dev/driver.h> 36 #include <usb/dev/request.h> 37 37 #include <usb/debug.h> 38 #include <usb/d p.h>38 #include <usb/dev/dp.h> 39 39 #include <errno.h> 40 40 #include <str_error.h> -
uspace/lib/usbdev/src/devdrv.c
r04c418d r7d521e24 33 33 * USB device driver framework. 34 34 */ 35 #include <usb/dev drv.h>36 #include <usb/ request.h>35 #include <usb/dev/driver.h> 36 #include <usb/dev/request.h> 37 37 #include <usb/debug.h> 38 #include <usb/d p.h>38 #include <usb/dev/dp.h> 39 39 #include <errno.h> 40 40 #include <str_error.h> -
uspace/lib/usbdev/src/devpoll.c
r04c418d r7d521e24 33 33 * USB device driver framework - automatic interrupt polling. 34 34 */ 35 #include <usb/dev poll.h>36 #include <usb/ request.h>35 #include <usb/dev/poll.h> 36 #include <usb/dev/request.h> 37 37 #include <usb/debug.h> 38 38 #include <usb/classes/classes.h> -
uspace/lib/usbdev/src/dp.c
r04c418d r7d521e24 46 46 #include <assert.h> 47 47 #include <bool.h> 48 #include <usb/d p.h>48 #include <usb/dev/dp.h> 49 49 #include <usb/descriptor.h> 50 50 -
uspace/lib/usbdev/src/hub.c
r04c418d r7d521e24 33 33 * Functions needed by hub drivers. 34 34 */ 35 #include <usb/ hub.h>36 #include <usb/ pipes.h>37 #include <usb/ request.h>38 #include <usb/ recognise.h>35 #include <usb/dev/hub.h> 36 #include <usb/dev/pipes.h> 37 #include <usb/dev/request.h> 38 #include <usb/dev/recognise.h> 39 39 #include <usbhc_iface.h> 40 40 #include <errno.h> -
uspace/lib/usbdev/src/pipepriv.h
r04c418d r7d521e24 36 36 #define LIBUSB_PIPEPRIV_H_ 37 37 38 #include <usb/ pipes.h>38 #include <usb/dev/pipes.h> 39 39 #include <bool.h> 40 40 -
uspace/lib/usbdev/src/pipes.c
r04c418d r7d521e24 34 34 */ 35 35 #include <usb/usb.h> 36 #include <usb/ pipes.h>36 #include <usb/dev/pipes.h> 37 37 #include <usb/debug.h> 38 38 #include <usb/driver.h> -
uspace/lib/usbdev/src/pipesinit.c
r04c418d r7d521e24 35 35 */ 36 36 #include <usb/usb.h> 37 #include <usb/ pipes.h>38 #include <usb/d p.h>39 #include <usb/ request.h>37 #include <usb/dev/pipes.h> 38 #include <usb/dev/dp.h> 39 #include <usb/dev/request.h> 40 40 #include <usbhc_iface.h> 41 41 #include <errno.h> -
uspace/lib/usbdev/src/pipesio.c
r04c418d r7d521e24 45 45 */ 46 46 #include <usb/usb.h> 47 #include <usb/ pipes.h>47 #include <usb/dev/pipes.h> 48 48 #include <errno.h> 49 49 #include <assert.h> 50 50 #include <usbhc_iface.h> 51 #include <usb/ request.h>51 #include <usb/dev/request.h> 52 52 #include "pipepriv.h" 53 53 -
uspace/lib/usbdev/src/recognise.c
r04c418d r7d521e24 35 35 #include <sys/types.h> 36 36 #include <fibril_synch.h> 37 #include <usb/ pipes.h>38 #include <usb/ recognise.h>37 #include <usb/dev/pipes.h> 38 #include <usb/dev/recognise.h> 39 39 #include <usb/ddfiface.h> 40 #include <usb/ request.h>40 #include <usb/dev/request.h> 41 41 #include <usb/classes/classes.h> 42 42 #include <stdio.h> -
uspace/lib/usbdev/src/request.c
r04c418d r7d521e24 33 33 * Standard USB requests (implementation). 34 34 */ 35 #include <usb/ request.h>35 #include <usb/dev/request.h> 36 36 #include <errno.h> 37 37 #include <assert.h> -
uspace/lib/usbdev/src/usbdevice.c
r04c418d r7d521e24 36 36 #include <async.h> 37 37 #include <usb_iface.h> 38 #include <usb/ usbdevice.h>38 #include <usb/dev/hc.h> 39 39 #include <usb/driver.h> 40 40 #include <usb/debug.h> -
uspace/lib/usbhid/include/usb/classes/hidreport.h
r04c418d r7d521e24 37 37 #define LIBUSB_HIDREPORT_H_ 38 38 39 #include <usb/dev drv.h>39 #include <usb/dev/driver.h> 40 40 #include <usb/classes/hidparser.h> 41 41 -
uspace/lib/usbhid/include/usb/classes/hidreq.h
r04c418d r7d521e24 40 40 41 41 #include <usb/classes/hid.h> 42 #include <usb/ pipes.h>42 #include <usb/dev/pipes.h> 43 43 44 44 /*----------------------------------------------------------------------------*/ -
uspace/lib/usbhid/src/hidreport.c
r04c418d r7d521e24 41 41 #include <usb/debug.h> 42 42 #include <usb/classes/hidparser.h> 43 #include <usb/d p.h>44 #include <usb/dev drv.h>45 #include <usb/ pipes.h>43 #include <usb/dev/dp.h> 44 #include <usb/dev/driver.h> 45 #include <usb/dev/pipes.h> 46 46 #include <usb/classes/hid.h> 47 47 #include <usb/descriptor.h> 48 #include <usb/ request.h>48 #include <usb/dev/request.h> 49 49 50 50 #include <usb/classes/hidreport.h> -
uspace/lib/usbhid/src/hidreq.c
r04c418d r7d521e24 40 40 #include <usb/classes/hid.h> 41 41 #include <usb/debug.h> 42 #include <usb/ request.h>43 #include <usb/ pipes.h>42 #include <usb/dev/request.h> 43 #include <usb/dev/pipes.h> 44 44 45 45 #include <usb/classes/hidreq.h> -
uspace/lib/usbvirt/include/usbvirt/device.h
r04c418d r7d521e24 37 37 38 38 #include <usb/usb.h> 39 #include <usb/ request.h>39 #include <usb/dev/request.h> 40 40 41 41 /** Maximum number of endpoints supported by virtual USB. */ -
uspace/lib/usbvirt/src/ctrltransfer.c
r04c418d r7d521e24 34 34 */ 35 35 #include "private.h" 36 #include <usb/ request.h>36 #include <usb/dev/request.h> 37 37 #include <usb/debug.h> 38 38 #include <assert.h> -
uspace/lib/usbvirt/src/stdreq.c
r04c418d r7d521e24 34 34 */ 35 35 #include "private.h" 36 #include <usb/ request.h>36 #include <usb/dev/request.h> 37 37 #include <assert.h> 38 38 #include <errno.h>
Note:
See TracChangeset
for help on using the changeset viewer.