summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-01-09 17:59:41 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-01-09 17:59:41 +0000
commitf0d6a1e75dfe8f9a2ce65100725d889a97275f75 (patch)
treebeb69eee57bc1d1c01fb505f195b5e0d4eb1fcca
parent6e6a8073b33c9fdcb0dd99d052c53156b527e3c5 (diff)
downloadnuttx-f0d6a1e75dfe8f9a2ce65100725d889a97275f75.tar.gz
nuttx-f0d6a1e75dfe8f9a2ce65100725d889a97275f75.tar.bz2
nuttx-f0d6a1e75dfe8f9a2ce65100725d889a97275f75.zip
typos
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3238 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/Documentation/NuttxPortingGuide.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/Documentation/NuttxPortingGuide.html b/nuttx/Documentation/NuttxPortingGuide.html
index 03012038d..c392167ed 100644
--- a/nuttx/Documentation/NuttxPortingGuide.html
+++ b/nuttx/Documentation/NuttxPortingGuide.html
@@ -2163,7 +2163,7 @@ extern void up_ledoff(int led);
<b>USB Host Class Driver Registry</b>.
The NuttX USB host infrastructure includes a <i>registry</i>.
During its initialization, each USB host class driver must call the interface, <code>usbhost_registerclass()</code>
- in order add its interface to the register.
+ in order add its interface to the registery.
Later, when a USB device is connected, the USB host controller will look up the USB host class driver that is needed to support the connected device in this registry.
</p>
<p>
@@ -2196,9 +2196,9 @@ extern void up_ledoff(int led);
As part of this enumeration process, the driver will
(1) get the device's configuration descriptor,
(2) extract the class ID info from the configuration descriptor,
- (3) call usbhost_findclass() to find the class that supports this device,
- (4) call the create() method on the struct usbhost_registry_s interface to get a class instance, and
- finally (5) call the connect() method of the struct usbhost_class_s interface.
+ (3) call <code>usbhost_findclass(</code>) to find the class that supports this device,
+ (4) call the <code>create()</code> method on the <code>struct usbhost_registry_s interface</code> to get a class instance, and
+ finally (5) call the <code>connect()</code> method of the <code>struct usbhost_class_s</code> interface.
After that, the class is in charge of the sequence of operations.
</p>
</ul>