From bf027add794d08a5dd0fb32948a3fe318fd33b93 Mon Sep 17 00:00:00 2001 From: Theodore Ateba Date: Tue, 3 Oct 2017 20:01:46 +0000 Subject: Correct comment. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10758 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/include/hal_pal.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/os/hal/include/hal_pal.h b/os/hal/include/hal_pal.h index 276c8f524..e2d85f0fe 100644 --- a/os/hal/include/hal_pal.h +++ b/os/hal/include/hal_pal.h @@ -214,8 +214,8 @@ typedef struct { * @brief Bits group mask helper. * @details This macro calculates the mask of a bits group. * - * @param[in] width group width - * @return The group mask. + * @param[in] width group width + * @return The group mask. */ #if !defined(PAL_GROUP_MASK) || defined(__DOXYGEN__) #define PAL_GROUP_MASK(width) ((ioportmask_t)(1U << (width)) - 1U) @@ -229,7 +229,7 @@ typedef struct { * @param[in] name name of the IOBus variable * @param[in] port I/O port descriptor * @param[in] width bus width in bits - * @param[in] offset bus bit offset within the port + * @param[in] offset bus bit offset within the port */ #define _IOBUS_DATA(name, port, width, offset) \ {port, PAL_GROUP_MASK(width), offset} -- cgit v1.2.3