From ec80cc2e2755fb2c2d27a4791d81082dfbb011bc Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 21 Dec 2010 11:21:07 +0000 Subject: [PATCH] Clean up comments git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3207 42af7a65-404d-4744-a932-0658087f49c3 --- arch/arm/src/lpc17xx/lpc17_usbhost.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/src/lpc17xx/lpc17_usbhost.c b/arch/arm/src/lpc17xx/lpc17_usbhost.c index 2f162556de..d739f9c2ea 100755 --- a/arch/arm/src/lpc17xx/lpc17_usbhost.c +++ b/arch/arm/src/lpc17xx/lpc17_usbhost.c @@ -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; }