diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-07-01 08:53:09 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-07-01 08:53:09 +0000 |
commit | 228be31cd61c1cf26190431281a9ca9fd067c2e7 (patch) | |
tree | 0912c14ae69cc3c1e95f72bbc90c1d83e370780d /os/hal | |
parent | b03af35eb389d6452eb547845afcc20721ed5934 (diff) | |
download | ChibiOS-228be31cd61c1cf26190431281a9ca9fd067c2e7.tar.gz ChibiOS-228be31cd61c1cf26190431281a9ca9fd067c2e7.tar.bz2 ChibiOS-228be31cd61c1cf26190431281a9ca9fd067c2e7.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4377 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/src/sdc.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/os/hal/src/sdc.c b/os/hal/src/sdc.c index 2773ab79c..cee9049fd 100644 --- a/os/hal/src/sdc.c +++ b/os/hal/src/sdc.c @@ -67,8 +67,8 @@ static const struct SDCDriverVMT sdc_vmt = { * @param[in] sdcp pointer to the @p SDCDriver object
*
* @return The operation status.
- * @retval FALSE operation succeeded.
- * @retval TRUE operation failed.
+ * @retval CH_SUCCESS operation succeeded.
+ * @retval CH_FAILED operation failed.
*
* @notapi
*/
@@ -183,8 +183,8 @@ void sdcStop(SDCDriver *sdcp) { * @param[in] sdcp pointer to the @p SDCDriver object
*
* @return The operation status.
- * @retval CH_FAILED operation succeeded.
- * @retval CH_SUCCESS operation failed.
+ * @retval CH_SUCCESS operation succeeded.
+ * @retval CH_FAILED operation failed.
*
* @api
*/
@@ -326,8 +326,8 @@ failed: * @param[in] sdcp pointer to the @p SDCDriver object
*
* @return The operation status.
- * @retval CH_FAILED operation succeeded.
- * @retval CH_SUCCESS operation failed.
+ * @retval CH_SUCCESS operation succeeded.
+ * @retval CH_FAILED operation failed.
*
* @api
*/
@@ -369,8 +369,8 @@ bool_t sdcDisconnect(SDCDriver *sdcp) { * @param[in] n number of blocks to read
*
* @return The operation status.
- * @retval CH_FAILED operation succeeded.
- * @retval CH_SUCCESS operation failed.
+ * @retval CH_SUCCESS operation succeeded.
+ * @retval CH_FAILED operation failed.
*
* @api
*/
@@ -407,8 +407,8 @@ bool_t sdcRead(SDCDriver *sdcp, uint32_t startblk, * @param[in] n number of blocks to write
*
* @return The operation status.
- * @retval CH_FAILED operation succeeded.
- * @retval CH_SUCCESS operation failed.
+ * @retval CH_SUCCESS operation succeeded.
+ * @retval CH_FAILED operation failed.
*
* @api
*/
|