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 | |
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')
-rw-r--r-- | os/hal/src/adc.c | 6 | ||||
-rw-r--r-- | os/hal/src/mac.c | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/os/hal/src/adc.c b/os/hal/src/adc.c index 2297f03fc..f79d405e4 100644 --- a/os/hal/src/adc.c +++ b/os/hal/src/adc.c @@ -259,11 +259,11 @@ void adcStopConversionI(ADCDriver *adcp) { * @param[in] depth buffer depth (matrix rows number). The buffer depth
* must be one or an even number.
* @return The operation result.
- * @retval RDY_OK Conversion finished.
- * @retval RDY_RESET The conversion has been stopped using
+ * @retval MSG_OK Conversion finished.
+ * @retval MSG_RESET The conversion has been stopped using
* @p acdStopConversion() or @p acdStopConversionI(),
* the result buffer may contain incorrect data.
- * @retval RDY_TIMEOUT The conversion has been stopped because an hardware
+ * @retval MSG_TIMEOUT The conversion has been stopped because an hardware
* error.
*
* @api
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
*/
|