aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/templates/hal_qspi_lld.c
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-06-04 14:03:21 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-06-04 14:03:21 +0000
commit6e8584a24b6dea449671b96de9c6c4ff307c9167 (patch)
tree0f06478a8d013aad2b799aec78137379beadb3f1 /os/hal/templates/hal_qspi_lld.c
parent46c3ad6c2746e4522cc4f6cd301804af08bcb59e (diff)
downloadChibiOS-6e8584a24b6dea449671b96de9c6c4ff307c9167.tar.gz
ChibiOS-6e8584a24b6dea449671b96de9c6c4ff307c9167.tar.bz2
ChibiOS-6e8584a24b6dea449671b96de9c6c4ff307c9167.zip
Documentation-related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10248 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/templates/hal_qspi_lld.c')
-rw-r--r--os/hal/templates/hal_qspi_lld.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/templates/hal_qspi_lld.c b/os/hal/templates/hal_qspi_lld.c
index 6ba358168..e9c7103c6 100644
--- a/os/hal/templates/hal_qspi_lld.c
+++ b/os/hal/templates/hal_qspi_lld.c
@@ -116,7 +116,7 @@ void qspi_lld_stop(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
*
* @notapi
*/
@@ -131,7 +131,7 @@ void qspi_lld_command(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
*
@@ -151,7 +151,7 @@ void qspi_lld_send(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
*