From ae70b0edcea8b466894e140839371fb122a4aa92 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sat, 26 Dec 2015 13:16:24 +0000 Subject: Fixed bug #686. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8647 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/include/pal.h | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'os/hal/include') diff --git a/os/hal/include/pal.h b/os/hal/include/pal.h index ca4681287..c937e3201 100644 --- a/os/hal/include/pal.h +++ b/os/hal/include/pal.h @@ -260,8 +260,8 @@ typedef struct { * @brief Sets a bits mask on a I/O port. * @note The operation is not guaranteed to be atomic on all the * architectures, for atomicity and/or portability reasons you may - * need to enclose port I/O operations between @p chSysLock() and - * @p chSysUnlock(). + * need to enclose port I/O operations between @p osalSysLock() and + * @p osalSysUnlock(). * @note The default implementation is non atomic and not necessarily * optimal. Low level drivers may optimize the function by using * specific hardware or coding. @@ -283,8 +283,8 @@ typedef struct { * @brief Clears a bits mask on a I/O port. * @note The operation is not guaranteed to be atomic on all the * architectures, for atomicity and/or portability reasons you may - * need to enclose port I/O operations between @p chSysLock() and - * @p chSysUnlock(). + * need to enclose port I/O operations between @p osalSysLock() and + * @p osalSysUnlock(). * @note The default implementation is non atomic and not necessarily * optimal. Low level drivers may optimize the function by using * specific hardware or coding. @@ -306,8 +306,8 @@ typedef struct { * @brief Toggles a bits mask on a I/O port. * @note The operation is not guaranteed to be atomic on all the * architectures, for atomicity and/or portability reasons you may - * need to enclose port I/O operations between @p chSysLock() and - * @p chSysUnlock(). + * need to enclose port I/O operations between @p osalSysLock() and + * @p osalSysUnlock(). * @note The default implementation is non atomic and not necessarily * optimal. Low level drivers may optimize the function by using * specific hardware or coding. @@ -414,8 +414,8 @@ typedef struct { * @brief Writes a logic state on an output pad. * @note The operation is not guaranteed to be atomic on all the * architectures, for atomicity and/or portability reasons you may - * need to enclose port I/O operations between @p chSysLock() and - * @p chSysUnlock(). + * need to enclose port I/O operations between @p osalSysLock() and + * @p osalSysUnlock(). * @note The default implementation is non atomic and not necessarily * optimal. Low level drivers may optimize the function by using * specific hardware or coding. @@ -442,8 +442,8 @@ typedef struct { * @brief Sets a pad logic state to @p PAL_HIGH. * @note The operation is not guaranteed to be atomic on all the * architectures, for atomicity and/or portability reasons you may - * need to enclose port I/O operations between @p chSysLock() and - * @p chSysUnlock(). + * need to enclose port I/O operations between @p osalSysLock() and + * @p osalSysUnlock(). * @note The default implementation is non atomic and not necessarily * optimal. Low level drivers may optimize the function by using * specific hardware or coding. @@ -465,8 +465,8 @@ typedef struct { * @brief Clears a pad logic state to @p PAL_LOW. * @note The operation is not guaranteed to be atomic on all the * architectures, for atomicity and/or portability reasons you may - * need to enclose port I/O operations between @p chSysLock() and - * @p chSysUnlock(). + * need to enclose port I/O operations between @p osalSysLock() and + * @p osalSysUnlock(). * @note The default implementation is non atomic and not necessarily * optimal. Low level drivers may optimize the function by using * specific hardware or coding. @@ -488,8 +488,8 @@ typedef struct { * @brief Toggles a pad logic state. * @note The operation is not guaranteed to be atomic on all the * architectures, for atomicity and/or portability reasons you may - * need to enclose port I/O operations between @p chSysLock() and - * @p chSysUnlock(). + * need to enclose port I/O operations between @p osalSysLock() and + * @p osalSysUnlock(). * @note The default implementation is non atomic and not necessarily * optimal. Low level drivers may optimize the function by using * specific hardware or coding. -- cgit v1.2.3