From f5a8502a288742f80cbaeb094911d75efff82b28 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Thu, 5 Feb 2015 12:45:05 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7656 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/include/usb.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'os/hal/include') 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 */ -- cgit v1.2.3