mirror of
https://github.com/apache/nuttx.git
synced 2026-08-09 14:35:08 +00:00
LPC31 EHCI: Fix errors in DEBUGASSERT statements
This commit is contained in:
parent
39c3b783ae
commit
333a49152b
2 changed files with 3 additions and 3 deletions
|
|
@ -3432,7 +3432,7 @@ static int lpc31_enumerate(FAR struct usbhost_connection_s *conn, int rhpndx)
|
|||
* repeat."
|
||||
*/
|
||||
|
||||
DEBUGASSERT(rhport->ep0.speed = EHCI_FULL_SPEED);
|
||||
DEBUGASSERT(rhport->ep0.speed == EHCI_FULL_SPEED);
|
||||
|
||||
#if 0 /* The LPC31xx does not support a companion host controller */
|
||||
regval |= EHCI_PORTSC_OWNER;
|
||||
|
|
@ -3449,7 +3449,7 @@ static int lpc31_enumerate(FAR struct usbhost_connection_s *conn, int rhpndx)
|
|||
|
||||
else
|
||||
{
|
||||
DEBUGASSERT(rhport->ep0.speed = EHCI_LOW_SPEED);
|
||||
DEBUGASSERT(rhport->ep0.speed == EHCI_LOW_SPEED);
|
||||
DEBUGASSERT((regval & USBDEV_PRTSC1_PSPD_MASK) == USBDEV_PRTSC1_PSPD_LS)
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2052,7 +2052,7 @@ static int nand_readpage_noecc(struct sam_nandcs_s *priv, off_t block,
|
|||
}
|
||||
}
|
||||
|
||||
/* Read the spare are is so requested */
|
||||
/* Read the spare area if so requested */
|
||||
|
||||
if (spare)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue