diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-03-13 10:28:20 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-03-13 10:28:20 +0000 |
commit | 28b2143a444a29f9739d0016633c01b9273cf88f (patch) | |
tree | 79f16f1d6cac527f2994066720d2f02fd17cfc1f /os/hal/src/mac.c | |
parent | 19d593770fe3faeab96477e77c1fa370fd9d095f (diff) | |
download | ChibiOS-28b2143a444a29f9739d0016633c01b9273cf88f.tar.gz ChibiOS-28b2143a444a29f9739d0016633c01b9273cf88f.tar.bz2 ChibiOS-28b2143a444a29f9739d0016633c01b9273cf88f.zip |
Fixed some RDY_ leftovers in HAL.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7768 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/src/mac.c')
-rw-r--r-- | os/hal/src/mac.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/os/hal/src/mac.c b/os/hal/src/mac.c index b6570073e..cbf10b811 100644 --- a/os/hal/src/mac.c +++ b/os/hal/src/mac.c @@ -141,8 +141,8 @@ void macStop(MACDriver *macp) { * - @a TIME_INFINITE no timeout.
* .
* @return The operation status.
- * @retval RDY_OK the descriptor was obtained.
- * @retval RDY_TIMEOUT the operation timed out, descriptor not initialized.
+ * @retval MSG_OK the descriptor was obtained.
+ * @retval MSG_TIMEOUT the operation timed out, descriptor not initialized.
*
* @api
*/
@@ -201,8 +201,8 @@ void macReleaseTransmitDescriptor(MACTransmitDescriptor *tdp) { * - @a TIME_INFINITE no timeout.
* .
* @return The operation status.
- * @retval RDY_OK the descriptor was obtained.
- * @retval RDY_TIMEOUT the operation timed out, descriptor not initialized.
+ * @retval MSG_OK the descriptor was obtained.
+ * @retval MSG_TIMEOUT the operation timed out, descriptor not initialized.
*
* @api
*/
|