diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-02-07 07:58:38 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-02-07 07:58:38 +0000 |
commit | af22a2dcaf9d9750ba5604d4ef9a82d0540a0c20 (patch) | |
tree | 753da72db551e5906d46e0a00b6ec2c38ff42909 /os/hal/src | |
parent | 47a8438f5b7e146294a666a3e3ed3151fba8e9b9 (diff) | |
download | ChibiOS-af22a2dcaf9d9750ba5604d4ef9a82d0540a0c20.tar.gz ChibiOS-af22a2dcaf9d9750ba5604d4ef9a82d0540a0c20.tar.bz2 ChibiOS-af22a2dcaf9d9750ba5604d4ef9a82d0540a0c20.zip |
Documentation-related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10092 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/src')
-rw-r--r-- | os/hal/src/hal_qspi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/src/hal_qspi.c b/os/hal/src/hal_qspi.c index 06dbc15c6..e8740f57c 100644 --- a/os/hal/src/hal_qspi.c +++ b/os/hal/src/hal_qspi.c @@ -134,7 +134,7 @@ void qspiStop(QSPIDriver *qspip) { * @post At the end of the operation the configured callback is invoked.
*
* @param[in] qspip pointer to the @p QSPIDriver object
- * @param[in] cmd pointer to the command descriptor
+ * @param[in] cmdp pointer to the command descriptor
*
* @api
*/
@@ -156,7 +156,7 @@ void qspiStartCommand(QSPIDriver *qspip, const qspi_command_t *cmdp) { * @post At the end of the operation the configured callback is invoked.
*
* @param[in] qspip pointer to the @p QSPIDriver object
- * @param[in] cmd pointer to the command descriptor
+ * @param[in] cmdp pointer to the command descriptor
* @param[in] n number of bytes to send
* @param[in] txbuf the pointer to the transmit buffer
*
@@ -182,7 +182,7 @@ void qspiStartSend(QSPIDriver *qspip, const qspi_command_t *cmdp, * @post At the end of the operation the configured callback is invoked.
*
* @param[in] qspip pointer to the @p QSPIDriver object
- * @param[in] cmd pointer to the command descriptor
+ * @param[in] cmdp pointer to the command descriptor
* @param[in] n number of bytes to send
* @param[out] rxbuf the pointer to the receive buffer
*
|