diff options
author | edolomb <none@example.com> | 2017-08-10 12:40:27 +0000 |
---|---|---|
committer | edolomb <none@example.com> | 2017-08-10 12:40:27 +0000 |
commit | 2f04d74a231dc0225fdc83b087abcd380965a34a (patch) | |
tree | d5288af40fc747f60b6d4c3b56b2568db0f44148 /os/hal/ports/common | |
parent | c8b1c0c45ed1dc43a9e1ad85e64734cbe5ccc504 (diff) | |
download | ChibiOS-2f04d74a231dc0225fdc83b087abcd380965a34a.tar.gz ChibiOS-2f04d74a231dc0225fdc83b087abcd380965a34a.tar.bz2 ChibiOS-2f04d74a231dc0225fdc83b087abcd380965a34a.zip |
Added SAMA Advanced Interrupt Controller aic
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10385 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/common')
-rw-r--r-- | os/hal/ports/common/ARMCAx/aic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/common/ARMCAx/aic.c b/os/hal/ports/common/ARMCAx/aic.c index 2e390a024..af3a27983 100644 --- a/os/hal/ports/common/ARMCAx/aic.c +++ b/os/hal/ports/common/ARMCAx/aic.c @@ -161,7 +161,7 @@ void aicDisableIt(uint32_t source) { /**
* @brief Clears interrupts coming from the selected source.
*
- * @param[in] source interrupt source
+ * @param[in] source interrupt source to Clear
*/
void aicClearIt(uint32_t source) {
@@ -174,7 +174,7 @@ void aicClearIt(uint32_t source) { /**
* @brief Sets interrupts coming from the selected source.
*
- * @param[in] source interrupt source
+ * @param[in] source interrupt source to Set
*/
void aicSetIt(uint32_t source) {
|