aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src/mac.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-10-04 07:57:37 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-10-04 07:57:37 +0000
commitc74da79d45345de8f393a07a64a87f24b01d4049 (patch)
treea14831422f0153590f4123e47b152d68fd4919d8 /os/hal/src/mac.c
parentd05fb1e4fff0f89de2c6a68ee2b989770f769f24 (diff)
downloadChibiOS-c74da79d45345de8f393a07a64a87f24b01d4049.tar.gz
ChibiOS-c74da79d45345de8f393a07a64a87f24b01d4049.tar.bz2
ChibiOS-c74da79d45345de8f393a07a64a87f24b01d4049.zip
Fixed bug #539.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7359 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/src/mac.c')
-rw-r--r--os/hal/src/mac.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/src/mac.c b/os/hal/src/mac.c
index 738a5ad84..66f10131f 100644
--- a/os/hal/src/mac.c
+++ b/os/hal/src/mac.c
@@ -250,12 +250,12 @@ void macReleaseReceiveDescriptor(MACReceiveDescriptor *rdp) {
*
* @param[in] macp pointer to the @p MACDriver object
* @return The link status.
- * @retval TRUE if the link is active.
- * @retval FALSE if the link is down.
+ * @retval true if the link is active.
+ * @retval false if the link is down.
*
* @api
*/
-bool_t macPollLinkStatus(MACDriver *macp) {
+bool macPollLinkStatus(MACDriver *macp) {
osalDbgCheck(macp != NULL);
osalDbgAssert(macp->state == MAC_ACTIVE, "not active");