aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2015-02-05 12:45:05 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2015-02-05 12:45:05 +0000
commitf5a8502a288742f80cbaeb094911d75efff82b28 (patch)
treefd5ba619d678b48da913f3621939b126427d7077 /os/hal/include
parentbc83d0a40213c0ce58b83f540461aeec471a18ed (diff)
downloadChibiOS-f5a8502a288742f80cbaeb094911d75efff82b28.tar.gz
ChibiOS-f5a8502a288742f80cbaeb094911d75efff82b28.tar.bz2
ChibiOS-f5a8502a288742f80cbaeb094911d75efff82b28.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7656 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include')
-rw-r--r--os/hal/include/usb.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/os/hal/include/usb.h b/os/hal/include/usb.h
index a52480135..c85506403 100644
--- a/os/hal/include/usb.h
+++ b/os/hal/include/usb.h
@@ -349,8 +349,8 @@ typedef void (*usbeventcb_t)(USBDriver *usbp, usbevent_t event);
* @param[in] usbp pointer to the @p USBDriver object triggering the
* callback
* @return The request handling exit code.
- * @retval FALSE Request not recognized by the handler.
- * @retval TRUE Request handled.
+ * @retval false Request not recognized by the handler.
+ * @retval true Request handled.
*/
typedef bool (*usbreqhandler_t)(USBDriver *usbp);
@@ -425,8 +425,8 @@ typedef const USBDescriptor * (*usbgetdescriptor_t)(USBDriver *usbp,
* @param[in] usbp pointer to the @p USBDriver object
* @param[in] ep endpoint number
* @return The operation status.
- * @retval FALSE Endpoint ready.
- * @retval TRUE Endpoint transmitting.
+ * @retval false Endpoint ready.
+ * @retval true Endpoint transmitting.
*
* @iclass
*/
@@ -438,8 +438,8 @@ typedef const USBDescriptor * (*usbgetdescriptor_t)(USBDriver *usbp,
* @param[in] usbp pointer to the @p USBDriver object
* @param[in] ep endpoint number
* @return The operation status.
- * @retval FALSE Endpoint ready.
- * @retval TRUE Endpoint receiving.
+ * @retval false Endpoint ready.
+ * @retval true Endpoint receiving.
*
* @iclass
*/