summaryrefslogtreecommitdiff
path: root/nuttx/include/nuttx/usb/usbhost.h
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-08-11 17:11:32 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-08-11 17:11:32 -0600
commit861253baf26635b4bc6f8092bbddaaebbabc09dd (patch)
tree969b6f71c51570630ce385df30d5989adb284093 /nuttx/include/nuttx/usb/usbhost.h
parent90d17e48b58e3fbffbe8b4d6b2476ba8bf23797d (diff)
downloadnuttx-861253baf26635b4bc6f8092bbddaaebbabc09dd.tar.gz
nuttx-861253baf26635b4bc6f8092bbddaaebbabc09dd.tar.bz2
nuttx-861253baf26635b4bc6f8092bbddaaebbabc09dd.zip
Add untested OHCI driver for the SAMA5; structure naming and header files for USB host initialization prototypes
Diffstat (limited to 'nuttx/include/nuttx/usb/usbhost.h')
-rw-r--r--nuttx/include/nuttx/usb/usbhost.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/nuttx/include/nuttx/usb/usbhost.h b/nuttx/include/nuttx/usb/usbhost.h
index acfe9a829..e8a5a9636 100644
--- a/nuttx/include/nuttx/usb/usbhost.h
+++ b/nuttx/include/nuttx/usb/usbhost.h
@@ -800,33 +800,6 @@ EXTERN int usbhost_kbdinit(void);
EXTERN int usbhost_wlaninit(void);
/*******************************************************************************
- * Name: usbhost_initialize
- *
- * Description:
- * Initialize USB host device controller hardware.
- *
- * Input Parameters:
- * controller -- If the device supports more than USB host controller, then
- * this identifies which controller is being intialized. Normally, this
- * is just zero.
- *
- * Returned Value:
- * And instance of the USB host interface. The controlling task should
- * use this interface to (1) call the wait() method to wait for a device
- * to be connected, and (2) call the enumerate() method to bind the device
- * to a class driver.
- *
- * Assumptions:
- * - This function should called in the initialization sequence in order
- * to initialize the USB device functionality.
- * - Class drivers should be initialized prior to calling this function.
- * Otherwise, there is a race condition if the device is already connected.
- *
- *******************************************************************************/
-
-EXTERN FAR struct usbhost_driver_s *usbhost_initialize(int controller);
-
-/*******************************************************************************
* Name: usbhost_enumerate
*
* Description: