summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/sama5/sam_usbhost.h
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-08-13 15:03:46 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-08-13 15:03:46 -0600
commitc5b10e879ed80495b250e2d9ca7a55ae7d27e57b (patch)
tree7defee4e62136636ba1a10744e1c50c210572aed /nuttx/arch/arm/src/sama5/sam_usbhost.h
parent61c04ffffaf6cf9024d740c04443e66c6fff500e (diff)
downloadnuttx-c5b10e879ed80495b250e2d9ca7a55ae7d27e57b.tar.gz
nuttx-c5b10e879ed80495b250e2d9ca7a55ae7d27e57b.tar.bz2
nuttx-c5b10e879ed80495b250e2d9ca7a55ae7d27e57b.zip
Separate wait() and enumerate() methods from struct usbhost_driver_s and move to new interface, struct usbhost_connection_s. This is part of the necessary restructuring of the USB host interface to support multiple root hub ports.
Diffstat (limited to 'nuttx/arch/arm/src/sama5/sam_usbhost.h')
-rw-r--r--nuttx/arch/arm/src/sama5/sam_usbhost.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/arch/arm/src/sama5/sam_usbhost.h b/nuttx/arch/arm/src/sama5/sam_usbhost.h
index c64664daf..deb428ce2 100644
--- a/nuttx/arch/arm/src/sama5/sam_usbhost.h
+++ b/nuttx/arch/arm/src/sama5/sam_usbhost.h
@@ -107,8 +107,8 @@ extern "C"
*******************************************************************************/
#ifdef CONFIG_SAMA5_OHCI
-struct usbhost_driver_s;
-FAR struct usbhost_driver_s *sam_ohci_initialize(int controller);
+struct usbhost_connection_s;
+FAR struct usbhost_connection_s *sam_ohci_initialize(int controller);
#endif
/*******************************************************************************