Clean up comments

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3207 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2010-12-21 11:21:07 +00:00
parent 9c199de133
commit ec80cc2e27

View File

@ -793,12 +793,12 @@ static int lpc17_classbind(struct lpc17_usbhost_s *priv,
uvdbg("CLASS_CREATE: %p\n", priv->class);
if (priv->class)
{
/* Then initialize the newly instantiated class instance */
/* Then bind the newly instantiated class instance */
ret = CLASS_CONFIGDESC(priv->class, configdesc, desclen);
ret = CLASS_CONNECT(priv->class, configdesc, desclen);
if (ret != OK)
{
udbg("CLASS_CONFIGDESC failed: %d\n", ret);
udbg("CLASS_CONNECT failed: %d\n", ret);
CLASS_DISCONNECTED(priv->class);
priv->class = NULL;
}