From fa8015b26e5abed97ecca043c111e0b1e600e613 Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 12 Jan 2011 02:12:41 +0000 Subject: [PATCH] Rename usb_storage.h to storage.h git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3243 42af7a65-404d-4744-a932-0658087f49c3 --- drivers/usbdev/usbdev_scsi.c | 2 +- drivers/usbdev/usbdev_storage.c | 2 +- drivers/usbdev/usbdev_storage.h | 2 +- drivers/usbhost/usbhost_storage.c | 13 ++++++------- include/nuttx/usb/{usb_storage.h => storage.h} | 10 +++++----- 5 files changed, 14 insertions(+), 15 deletions(-) rename include/nuttx/usb/{usb_storage.h => storage.h} (96%) diff --git a/drivers/usbdev/usbdev_scsi.c b/drivers/usbdev/usbdev_scsi.c index c35a50183e..3d5201209c 100644 --- a/drivers/usbdev/usbdev_scsi.c +++ b/drivers/usbdev/usbdev_scsi.c @@ -69,7 +69,7 @@ #include #include -#include +#include #include #include diff --git a/drivers/usbdev/usbdev_storage.c b/drivers/usbdev/usbdev_storage.c index 17509c13e0..fc61670d27 100644 --- a/drivers/usbdev/usbdev_storage.c +++ b/drivers/usbdev/usbdev_storage.c @@ -75,7 +75,7 @@ #include #include #include -#include +#include #include #include diff --git a/drivers/usbdev/usbdev_storage.h b/drivers/usbdev/usbdev_storage.h index e9702b8dd4..320c78ccde 100644 --- a/drivers/usbdev/usbdev_storage.h +++ b/drivers/usbdev/usbdev_storage.h @@ -51,7 +51,7 @@ #include #include -#include +#include #include /**************************************************************************** diff --git a/drivers/usbhost/usbhost_storage.c b/drivers/usbhost/usbhost_storage.c index 5c44fd9f61..bef82ba3a5 100644 --- a/drivers/usbhost/usbhost_storage.c +++ b/drivers/usbhost/usbhost_storage.c @@ -54,7 +54,7 @@ #include #include -#include +#include #if defined(CONFIG_USBHOST) && !defined(CONFIG_DISABLE_MOUNTPOINT) && CONFIG_NFILE_DESCRIPTORS > 0 @@ -1109,9 +1109,8 @@ static inline int usbhost_cfgdesc(FAR struct usbhost_state_s *priv, * completes the initialization operations. It is first called after the * configuration descriptor has been received. * - * This function is called from the connect() method. It may either - * execute on (1) the thread of the caller of connect(), or (2) if - * connect() was called from an interrupt handler, on the worker thread. + * This function is called from the connect() method. This function always + * executes on the thread of the caller of connect(). * * Input Parameters: * priv - A reference to the class instance. @@ -1366,7 +1365,7 @@ static void usbhost_putbe16(uint8_t *dest, uint16_t val) } /**************************************************************************** - * Name: usbhost_getbe32 + * Name: usbhost_getle32 * * Description: * Get a (possibly unaligned) 32-bit little endian value. @@ -1707,8 +1706,8 @@ static int usbhost_disconnected(struct usbhost_class_s *class) DEBUGASSERT(priv != NULL); - /* Nullify the driver instance. This will be our indication to any users - * of the mass storage device that the device is no longer available. + /* Set an indication to any users of the mass storage device that the device + * is no longer available. */ flags = irqsave(); diff --git a/include/nuttx/usb/usb_storage.h b/include/nuttx/usb/storage.h similarity index 96% rename from include/nuttx/usb/usb_storage.h rename to include/nuttx/usb/storage.h index 030b10bc21..150149c83a 100644 --- a/include/nuttx/usb/usb_storage.h +++ b/include/nuttx/usb/storage.h @@ -1,7 +1,7 @@ /************************************************************************************ - * include/nuttx/usb/usb_storage.h + * include/nuttx/usb/storage.h * - * Copyright (C) 2008, 2009 Gregory Nutt. All rights reserved. + * Copyright (C) 2008-2011 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * References: @@ -40,8 +40,8 @@ * ************************************************************************************/ -#ifndef __NUTTX_USB_USB_STORAGE_H -#define __NUTTX_USB_USB_STORAGE_H +#ifndef __NUTTX_USB_STORAGE_H +#define __NUTTX_USB_STORAGE_H /************************************************************************************ * Included Files @@ -128,4 +128,4 @@ struct usbstrg_csw_s * Public Functions ************************************************************************************/ -#endif /* __NUTTX_USB_USB_STORAGE_H */ +#endif /* __NUTTX_USB_STORAGE_H */