Fix uninitialized variable
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1051 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
8ade0e3b55
commit
995be717bf
@ -505,6 +505,6 @@
|
|||||||
* Added LPC214x SPI1 driver to interface with MMC on mcu123.com board.
|
* Added LPC214x SPI1 driver to interface with MMC on mcu123.com board.
|
||||||
* Added a simple SPI-based MMC/SD block driver
|
* Added a simple SPI-based MMC/SD block driver
|
||||||
* NSH: Add LPC214x-specific support to NSH; NSH now mounts any SD cards in the slot.
|
* NSH: Add LPC214x-specific support to NSH; NSH now mounts any SD cards in the slot.
|
||||||
(Now that I have large media support so many partition and FAT fixes should follow).
|
|
||||||
* FAT: Fix access to unaligned 32-bit values in partion table (start sector & size)
|
* FAT: Fix access to unaligned 32-bit values in partion table (start sector & size)
|
||||||
|
* Fixed a problem with a un-initialized variable in the USB serial driver.
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<tr align="center" bgcolor="#e4e4e4">
|
<tr align="center" bgcolor="#e4e4e4">
|
||||||
<td>
|
<td>
|
||||||
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
|
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
|
||||||
<p>Last Updated: October 15, 2008</p>
|
<p>Last Updated: October 17, 2008</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@ -1137,8 +1137,8 @@ nuttx-0.3.17 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
|||||||
* Added LPC214x SPI1 driver to interface with MMC on mcu123.com board.
|
* Added LPC214x SPI1 driver to interface with MMC on mcu123.com board.
|
||||||
* Added a simple SPI-based MMC/SD block driver
|
* Added a simple SPI-based MMC/SD block driver
|
||||||
* NSH: Add LPC214x-specific support to NSH; NSH now mounts any SD cards in the slot.
|
* NSH: Add LPC214x-specific support to NSH; NSH now mounts any SD cards in the slot.
|
||||||
(Now that I have large media support so many partition and FAT fixes should follow).
|
|
||||||
* FAT: Fix access to unaligned 32-bit values in partion table (start sector & size)
|
* FAT: Fix access to unaligned 32-bit values in partion table (start sector & size)
|
||||||
|
* Fixed a problem with a un-initialized variable in the USB serial driver.
|
||||||
|
|
||||||
pascal-0.1.3 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
pascal-0.1.3 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||||
|
|
||||||
|
@ -257,9 +257,9 @@ struct usbser_dev_s
|
|||||||
ubyte linest[7]; /* Fake line status */
|
ubyte linest[7]; /* Fake line status */
|
||||||
sint16 rxhead; /* Working head; used when rx int disabled */
|
sint16 rxhead; /* Working head; used when rx int disabled */
|
||||||
|
|
||||||
FAR struct usbdev_ep_s *epintin; /* Address of Interrupt IN endpoint */
|
FAR struct usbdev_ep_s *epintin; /* Interrupt IN endpoint structure */
|
||||||
FAR struct usbdev_ep_s *epbulkin; /* Address of Bulk IN endpoint */
|
FAR struct usbdev_ep_s *epbulkin; /* Bulk IN endpoint structure */
|
||||||
FAR struct usbdev_ep_s *epbulkout; /* Address of Bulk OUT endpoint */
|
FAR struct usbdev_ep_s *epbulkout; /* Bulk OUT endpoint structure */
|
||||||
FAR struct usbdev_req_s *ctrlreq; /* Control request */
|
FAR struct usbdev_req_s *ctrlreq; /* Control request */
|
||||||
struct sq_queue_s reqlist; /* List of write request containers */
|
struct sq_queue_s reqlist; /* List of write request containers */
|
||||||
|
|
||||||
@ -667,14 +667,7 @@ static inline int usbclass_recvpacket(FAR struct usbser_dev_s *priv,
|
|||||||
currhead = priv->rxhead;
|
currhead = priv->rxhead;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Then copy data into the RX buffer until either: (1) all of the data has been
|
/* Pre-calculate the head index and check for wrap around. We need to do this
|
||||||
* copied, or (2) the RX buffer is full. NOTE: If the RX buffer becomes full,
|
|
||||||
* then we have overrun the serial driver and data will be lost.
|
|
||||||
*/
|
|
||||||
|
|
||||||
while (nexthead != recv->tail && reqlen > 0)
|
|
||||||
{
|
|
||||||
/* Pre-increment the head index and check for wrap around. We need to do this
|
|
||||||
* so that we can determine if the circular buffer will overrun BEFORE we
|
* so that we can determine if the circular buffer will overrun BEFORE we
|
||||||
* overrun the buffer!
|
* overrun the buffer!
|
||||||
*/
|
*/
|
||||||
@ -685,6 +678,13 @@ static inline int usbclass_recvpacket(FAR struct usbser_dev_s *priv,
|
|||||||
nexthead = 0;
|
nexthead = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Then copy data into the RX buffer until either: (1) all of the data has been
|
||||||
|
* copied, or (2) the RX buffer is full. NOTE: If the RX buffer becomes full,
|
||||||
|
* then we have overrun the serial driver and data will be lost.
|
||||||
|
*/
|
||||||
|
|
||||||
|
while (nexthead != recv->tail && reqlen > 0)
|
||||||
|
{
|
||||||
/* Copy one byte to the head of the circular RX buffer */
|
/* Copy one byte to the head of the circular RX buffer */
|
||||||
|
|
||||||
recv->buffer[currhead] = *reqbuf++;
|
recv->buffer[currhead] = *reqbuf++;
|
||||||
@ -707,6 +707,14 @@ static inline int usbclass_recvpacket(FAR struct usbser_dev_s *priv,
|
|||||||
sem_post(&serdev->recvsem);
|
sem_post(&serdev->recvsem);
|
||||||
currhead = recv->head;
|
currhead = recv->head;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Increment the head index and check for wrap around */
|
||||||
|
|
||||||
|
nexthead = currhead + 1;
|
||||||
|
if (nexthead >= recv->size)
|
||||||
|
{
|
||||||
|
nexthead = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Write back the head pointer using the shadow index if RX "interrupts"
|
/* Write back the head pointer using the shadow index if RX "interrupts"
|
||||||
@ -766,7 +774,8 @@ static struct usbdev_req_s *usbclass_allocreq(FAR struct usbdev_ep_s *ep, uint16
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
static void usbclass_freereq(FAR struct usbdev_ep_s *ep, struct usbdev_req_s *req)
|
static void usbclass_freereq(FAR struct usbdev_ep_s *ep,
|
||||||
|
FAR struct usbdev_req_s *req)
|
||||||
{
|
{
|
||||||
if (ep != NULL && req != NULL)
|
if (ep != NULL && req != NULL)
|
||||||
{
|
{
|
||||||
@ -905,7 +914,7 @@ static sint16 usbclass_mkcfgdesc(ubyte *buf)
|
|||||||
memcpy(buf, &g_ifdesc, USB_SIZEOF_IFDESC);
|
memcpy(buf, &g_ifdesc, USB_SIZEOF_IFDESC);
|
||||||
buf += USB_SIZEOF_IFDESC;
|
buf += USB_SIZEOF_IFDESC;
|
||||||
|
|
||||||
/* Make the two endpoint configurations. First, check for switches
|
/* Make the three endpoint configurations. First, check for switches
|
||||||
* between high and full speed
|
* between high and full speed
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -1111,7 +1120,8 @@ errout:
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
static void usbclass_ep0incomplete(FAR struct usbdev_ep_s *ep, struct usbdev_req_s *req)
|
static void usbclass_ep0incomplete(FAR struct usbdev_ep_s *ep,
|
||||||
|
FAR struct usbdev_req_s *req)
|
||||||
{
|
{
|
||||||
if (req->result || req->xfrd != req->len)
|
if (req->result || req->xfrd != req->len)
|
||||||
{
|
{
|
||||||
@ -1128,7 +1138,8 @@ static void usbclass_ep0incomplete(FAR struct usbdev_ep_s *ep, struct usbdev_req
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
static void usbclass_rdcomplete(FAR struct usbdev_ep_s *ep, struct usbdev_req_s *req)
|
static void usbclass_rdcomplete(FAR struct usbdev_ep_s *ep,
|
||||||
|
FAR struct usbdev_req_s *req)
|
||||||
{
|
{
|
||||||
FAR struct usbser_dev_s *priv;
|
FAR struct usbser_dev_s *priv;
|
||||||
irqstate_t flags;
|
irqstate_t flags;
|
||||||
@ -1194,7 +1205,8 @@ static void usbclass_rdcomplete(FAR struct usbdev_ep_s *ep, struct usbdev_req_s
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
static void usbclass_wrcomplete(FAR struct usbdev_ep_s *ep, struct usbdev_req_s *req)
|
static void usbclass_wrcomplete(FAR struct usbdev_ep_s *ep,
|
||||||
|
FAR struct usbdev_req_s *req)
|
||||||
{
|
{
|
||||||
FAR struct usbser_dev_s *priv;
|
FAR struct usbser_dev_s *priv;
|
||||||
FAR struct usbser_req_s *reqcontainer;
|
FAR struct usbser_req_s *reqcontainer;
|
||||||
@ -1371,12 +1383,16 @@ static int usbclass_bind(FAR struct usbdev_s *dev, FAR struct usbdevclass_driver
|
|||||||
irqrestore(flags);
|
irqrestore(flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Report if we are selfpowered */
|
||||||
|
|
||||||
|
#ifdef CONFIG_USBDEV_SELFPOWERED
|
||||||
|
DEV_SETSELFPOWERED(dev);
|
||||||
|
#endif
|
||||||
return OK;
|
return OK;
|
||||||
|
|
||||||
errout:
|
errout:
|
||||||
usbclass_unbind(dev);
|
usbclass_unbind(dev);
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
@ -1556,6 +1572,10 @@ static int usbclass_setup(FAR struct usbdev_s *dev, const struct usb_ctrlreq_s *
|
|||||||
|
|
||||||
switch (ctrl->type & USB_REQ_TYPE_MASK)
|
switch (ctrl->type & USB_REQ_TYPE_MASK)
|
||||||
{
|
{
|
||||||
|
/***********************************************************************
|
||||||
|
* Standard Requests
|
||||||
|
***********************************************************************/
|
||||||
|
|
||||||
case USB_REQ_TYPE_STANDARD:
|
case USB_REQ_TYPE_STANDARD:
|
||||||
{
|
{
|
||||||
switch (ctrl->req)
|
switch (ctrl->req)
|
||||||
@ -1589,7 +1609,7 @@ static int usbclass_setup(FAR struct usbdev_s *dev, const struct usb_ctrlreq_s *
|
|||||||
case USB_DESC_TYPE_CONFIG:
|
case USB_DESC_TYPE_CONFIG:
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_USBDEV_DUALSPEED
|
#ifdef CONFIG_USBDEV_DUALSPEED
|
||||||
ret = usbclass_mkcfgdesc(ctrlreq->buf, dev->speed, len);
|
ret = usbclass_mkcfgdesc(ctrlreq->buf, dev->speed);
|
||||||
#else
|
#else
|
||||||
ret = usbclass_mkcfgdesc(ctrlreq->buf);
|
ret = usbclass_mkcfgdesc(ctrlreq->buf);
|
||||||
#endif
|
#endif
|
||||||
@ -1673,6 +1693,10 @@ static int usbclass_setup(FAR struct usbdev_s *dev, const struct usb_ctrlreq_s *
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* PL2303 Vendor-Specific Requests
|
||||||
|
***********************************************************************/
|
||||||
|
|
||||||
case PL2303_CONTROL_TYPE:
|
case PL2303_CONTROL_TYPE:
|
||||||
{
|
{
|
||||||
if ((ctrl->type & USB_REQ_RECIPIENT_MASK) == USB_REQ_RECIPIENT_INTERFACE)
|
if ((ctrl->type & USB_REQ_RECIPIENT_MASK) == USB_REQ_RECIPIENT_INTERFACE)
|
||||||
@ -1738,7 +1762,9 @@ static int usbclass_setup(FAR struct usbdev_s *dev, const struct usb_ctrlreq_s *
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Respond with data transfer before status phase? */
|
/* Respond to the setup command if data was returned. On an error return
|
||||||
|
* value (ret < 0), the USB driver will stall.
|
||||||
|
*/
|
||||||
|
|
||||||
if (ret >= 0)
|
if (ret >= 0)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user