summaryrefslogtreecommitdiff
path: root/nuttx/drivers
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-12-14 19:02:49 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-12-14 19:02:49 +0000
commit047b1eb7659b1c5186b0ab1e549d0dce8a07bcce (patch)
tree9b4500b6b43e3c801bd852e2603edd638cdfbc25 /nuttx/drivers
parentc50f2a170433a0f85212c81374bbb62806ad3768 (diff)
downloadpx4-nuttx-047b1eb7659b1c5186b0ab1e549d0dce8a07bcce.tar.gz
px4-nuttx-047b1eb7659b1c5186b0ab1e549d0dce8a07bcce.tar.bz2
px4-nuttx-047b1eb7659b1c5186b0ab1e549d0dce8a07bcce.zip
update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3175 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/drivers')
-rw-r--r--nuttx/drivers/usbhost/usbhost_storage.c20
1 files changed, 14 insertions, 6 deletions
diff --git a/nuttx/drivers/usbhost/usbhost_storage.c b/nuttx/drivers/usbhost/usbhost_storage.c
index a26a8b37b..f0dc44b9f 100644
--- a/nuttx/drivers/usbhost/usbhost_storage.c
+++ b/nuttx/drivers/usbhost/usbhost_storage.c
@@ -54,12 +54,17 @@ static struct usbhost_class_s *usbhost_create(struct usbhost_driver_s *drvr);
struct usbhost_registry_s g_storage =
{
- NULL, /* flink */
- usbhost_create, /* create */
+ NULL, /* flink */
+ usbhost_create, /* create */
+ 1, /* nids */
{
- USB_CLASS_MASS_STORAGE, /* id.class */
- 0, /* id.vid */
- 0 /* id.pid */
+ {
+ USB_CLASS_MASS_STORAGE, /* id[0].base */
+ SUBSTRG_SUBCLASS_SCSI, /* id[0].subclass */
+ USBSTRG_PROTO_BULKONLY, /* id[0].proto */
+ 0, /* id[0].vid */
+ 0 /* id[0].pid */
+ }
}
};
@@ -82,6 +87,8 @@ struct usbhost_registry_s g_storage =
* drvr - An instance of struct usbhost_driver_s that the class
* implementation will "bind" to its state structure and will
* subsequently use to communicate with the USB host driver.
+ * id - In the case where the device supports multiple base classes,
+ * subclasses, or protocols, this specifies which to configure for.
*
* Returned Values:
* On success, this function will return a non-NULL instance of struct
@@ -92,7 +99,8 @@ struct usbhost_registry_s g_storage =
*
****************************************************************************/
-static struct usbhost_class_s *usbhost_create(struct usbhost_driver_s *drvr)
+static struct usbhost_class_s *usbhost_create(struct usbhost_driver_s *drvr,
+ const struct usbhost_id_s *id)
{
#warning "Not implemented"
return NULL;