Fix some cloned errors in SAM GPIO interrupt setup

This commit is contained in:
Gregory Nutt 2014-07-07 15:54:37 -06:00
parent 208985b8b7
commit 79511f427f
3 changed files with 3 additions and 3 deletions

View File

@ -175,7 +175,7 @@ char *mountpoint;
ret = mount(NULL, mountpoint, string "nfs", 0, (FAR void *)&data); ret = mount(NULL, mountpoint, string "nfs", 0, (FAR void *)&data);
</pre></ul> </pre></ul>
<p> <p>
NOTE that: (1) the block driver paramter is <code>NULL</code>. NOTE that: (1) the block driver parameter is <code>NULL</code>.
The <code>mount()</code> is smart enough to know that no block driver is needed with the NFS file system. The <code>mount()</code> is smart enough to know that no block driver is needed with the NFS file system.
(2) The NFS file system is identified with the simple string &quot;nfs&quot; (2) The NFS file system is identified with the simple string &quot;nfs&quot;
(3) A reference to <code>struct nfs_args</code> is passed as an NFS-specific argument. (3) A reference to <code>struct nfs_args</code> is passed as an NFS-specific argument.

View File

@ -1988,7 +1988,7 @@ mount -t &lt;fstype&gt; &lt;block-device&gt; <code>&lt;dir-path&gt;</code>
<p> <p>
<b>Synopsis</b>. <b>Synopsis</b>.
The <code>mount</code> command performs one of two different operations. The <code>mount</code> command performs one of two different operations.
If no paramters are provided on the command line after the <code>mount</code> command, then the <code>mount</code> command will enumerate all of the current mountpoints on the console. If no parameters are provided on the command line after the <code>mount</code> command, then the <code>mount</code> command will enumerate all of the current mountpoints on the console.
</p> </p>
<p> <p>
If the mount parameters are provied on the command after the <code>mount</code> command, then the <code>mount</code> command will mount a file system in the NuttX pseudo-file system. If the mount parameters are provied on the command after the <code>mount</code> command, then the <code>mount</code> command will mount a file system in the NuttX pseudo-file system.

View File

@ -1665,7 +1665,7 @@ ptr = (FAR struct somestruct_s *)value;
<li> <li>
<b><code> * Input Parameters:</code></b> followed by a description of the of each input parameter beginning on the second line. <b><code> * Input Parameters:</code></b> followed by a description of the of each input parameter beginning on the second line.
Each input parameter begins on a separator line indented by two additional spaces. Each input parameter begins on a separator line indented by two additional spaces.
The description needs to include (1) the name of the input paramters, and (2) a short description of the input parameter. The description needs to include (1) the name of the input parameters, and (2) a short description of the input parameter.
</li> </li>
<li> <li>
<b><code> * Returned Value:</code></b> followed by a description of the of returned value(s) beginning on the second line. <b><code> * Returned Value:</code></b> followed by a description of the of returned value(s) beginning on the second line.