Changeset c7b5826 in mainline for uspace/lib/usbdev


Ignore:
Timestamp:
2011-05-18T09:34:56Z (14 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
33d19a7
Parents:
d736fe38 (diff), b2995c3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Development branch changes

Location:
uspace/lib/usbdev
Files:
13 edited
8 moved

Legend:

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

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    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

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    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

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    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

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    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

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    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

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    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

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    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

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    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
  • uspace/lib/usbdev/src/altiface.c

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    3333 * Handling alternate interface settings.
    3434 */
    35 #include <usb/devdrv.h>
    36 #include <usb/request.h>
     35#include <usb/dev/driver.h>
     36#include <usb/dev/request.h>
    3737#include <usb/debug.h>
    38 #include <usb/dp.h>
     38#include <usb/dev/dp.h>
    3939#include <errno.h>
    4040#include <str_error.h>
  • uspace/lib/usbdev/src/devdrv.c

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    3333 * USB device driver framework.
    3434 */
    35 #include <usb/devdrv.h>
    36 #include <usb/request.h>
     35#include <usb/dev/driver.h>
     36#include <usb/dev/request.h>
    3737#include <usb/debug.h>
    38 #include <usb/dp.h>
     38#include <usb/dev/dp.h>
    3939#include <errno.h>
    4040#include <str_error.h>
  • uspace/lib/usbdev/src/devpoll.c

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    3333 * USB device driver framework - automatic interrupt polling.
    3434 */
    35 #include <usb/devpoll.h>
    36 #include <usb/request.h>
     35#include <usb/dev/poll.h>
     36#include <usb/dev/request.h>
    3737#include <usb/debug.h>
    3838#include <usb/classes/classes.h>
  • uspace/lib/usbdev/src/dp.c

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    4646#include <assert.h>
    4747#include <bool.h>
    48 #include <usb/dp.h>
     48#include <usb/dev/dp.h>
    4949#include <usb/descriptor.h>
    5050
  • uspace/lib/usbdev/src/hub.c

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    3333 * Functions needed by hub drivers.
    3434 */
    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>
    3939#include <usbhc_iface.h>
    4040#include <errno.h>
  • uspace/lib/usbdev/src/pipepriv.c

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
  • uspace/lib/usbdev/src/pipepriv.h

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    3333 * Library internal functions on USB pipes.
    3434 */
    35 #ifndef LIBUSB_PIPEPRIV_H_
    36 #define LIBUSB_PIPEPRIV_H_
     35#ifndef LIBUSBDEV_PIPEPRIV_H_
     36#define LIBUSBDEV_PIPEPRIV_H_
    3737
    38 #include <usb/pipes.h>
     38#include <usb/dev/pipes.h>
    3939#include <bool.h>
    4040
  • uspace/lib/usbdev/src/pipes.c

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    3434 */
    3535#include <usb/usb.h>
    36 #include <usb/pipes.h>
     36#include <usb/dev/pipes.h>
    3737#include <usb/debug.h>
    3838#include <usb/driver.h>
  • uspace/lib/usbdev/src/pipesinit.c

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    3535 */
    3636#include <usb/usb.h>
    37 #include <usb/pipes.h>
    38 #include <usb/dp.h>
    39 #include <usb/request.h>
     37#include <usb/dev/pipes.h>
     38#include <usb/dev/dp.h>
     39#include <usb/dev/request.h>
    4040#include <usbhc_iface.h>
    4141#include <errno.h>
  • uspace/lib/usbdev/src/pipesio.c

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    4545 */
    4646#include <usb/usb.h>
    47 #include <usb/pipes.h>
     47#include <usb/dev/pipes.h>
    4848#include <errno.h>
    4949#include <assert.h>
    5050#include <usbhc_iface.h>
    51 #include <usb/request.h>
     51#include <usb/dev/request.h>
    5252#include "pipepriv.h"
    5353
  • uspace/lib/usbdev/src/recognise.c

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    3535#include <sys/types.h>
    3636#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>
    3939#include <usb/ddfiface.h>
    40 #include <usb/request.h>
     40#include <usb/dev/request.h>
    4141#include <usb/classes/classes.h>
    4242#include <stdio.h>
  • uspace/lib/usbdev/src/request.c

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    3333 * Standard USB requests (implementation).
    3434 */
    35 #include <usb/request.h>
     35#include <usb/dev/request.h>
    3636#include <errno.h>
    3737#include <assert.h>
  • uspace/lib/usbdev/src/usbdevice.c

    rd736fe38 rc7b5826  
    2727 */
    2828
    29 /** @addtogroup libusb
     29/** @addtogroup libusbdev
    3030 * @{
    3131 */
     
    3636#include <async.h>
    3737#include <usb_iface.h>
    38 #include <usb/usbdevice.h>
     38#include <usb/dev/hc.h>
    3939#include <usb/driver.h>
    4040#include <usb/debug.h>
Note: See TracChangeset for help on using the changeset viewer.