From 28b2143a444a29f9739d0016633c01b9273cf88f Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Fri, 13 Mar 2015 10:28:20 +0000 Subject: Fixed some RDY_ leftovers in HAL. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7768 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/templates/mac_lld.c | 8 ++++---- os/hal/templates/osal/osal.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'os/hal/templates') diff --git a/os/hal/templates/mac_lld.c b/os/hal/templates/mac_lld.c index 23ca1d97e..75b47af95 100644 --- a/os/hal/templates/mac_lld.c +++ b/os/hal/templates/mac_lld.c @@ -124,8 +124,8 @@ void mac_lld_stop(MACDriver *macp) { * @param[in] macp pointer to the @p MACDriver object * @param[out] tdp pointer to a @p MACTransmitDescriptor structure * @return The operation status. - * @retval RDY_OK the descriptor has been obtained. - * @retval RDY_TIMEOUT descriptor not available. + * @retval MSG_OK the descriptor has been obtained. + * @retval MSG_TIMEOUT descriptor not available. * * @notapi */ @@ -158,8 +158,8 @@ void mac_lld_release_transmit_descriptor(MACTransmitDescriptor *tdp) { * @param[in] macp pointer to the @p MACDriver object * @param[out] rdp pointer to a @p MACReceiveDescriptor structure * @return The operation status. - * @retval RDY_OK the descriptor has been obtained. - * @retval RDY_TIMEOUT descriptor not available. + * @retval MSG_OK the descriptor has been obtained. + * @retval MSG_TIMEOUT descriptor not available. * * @notapi */ diff --git a/os/hal/templates/osal/osal.h b/os/hal/templates/osal/osal.h index 6e3d62ca0..a6bbcca35 100644 --- a/os/hal/templates/osal/osal.h +++ b/os/hal/templates/osal/osal.h @@ -718,7 +718,7 @@ static inline void osalThreadQueueObjectInit(threads_queue_t *tqp) { * . * @return The message from @p osalQueueWakeupOneI() or * @p osalQueueWakeupAllI() functions. - * @retval RDY_TIMEOUT if the thread has not been dequeued within the + * @retval MSG_TIMEOUT if the thread has not been dequeued within the * specified timeout or if the function has been * invoked with @p TIME_IMMEDIATE as timeout * specification. -- cgit v1.2.3