diff options
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
*/
|