diff options
author | edolomb <none@example.com> | 2018-01-04 10:27:59 +0000 |
---|---|---|
committer | edolomb <none@example.com> | 2018-01-04 10:27:59 +0000 |
commit | ccbf09f1a2abad73c81e5e059b7d3f6d370e3293 (patch) | |
tree | 6ea4698662d8096bea532d8b8b87538d8fbe2542 /os | |
parent | 6f3e9953a763240f02098714a42445f7c860aee4 (diff) | |
download | ChibiOS-ccbf09f1a2abad73c81e5e059b7d3f6d370e3293.tar.gz ChibiOS-ccbf09f1a2abad73c81e5e059b7d3f6d370e3293.tar.bz2 ChibiOS-ccbf09f1a2abad73c81e5e059b7d3f6d370e3293.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11219 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/ports/SAMA/SAMA5D2x/sama_matrix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/ports/SAMA/SAMA5D2x/sama_matrix.c b/os/hal/ports/SAMA/SAMA5D2x/sama_matrix.c index db399a3bb..27a3544b5 100644 --- a/os/hal/ports/SAMA/SAMA5D2x/sama_matrix.c +++ b/os/hal/ports/SAMA/SAMA5D2x/sama_matrix.c @@ -208,7 +208,7 @@ void mtxRemapRom(void) { /* Invalidate I-Cache*/
L1C_InvalidateICacheAll();
- /* Ivalidate Region */
+ /* Invalidate Region */
cacheInvalidateRegion((void*)0, IRAM_SIZE);
}
@@ -223,9 +223,9 @@ void mtxRemapRam(void) { /* Invalidate I-Cache*/
L1C_InvalidateICacheAll();
- /* Ivalidate Region */
+ /* Clean I-Region */
cacheCleanRegion((void*)IRAM_ADDR, IRAM_SIZE);
- /* Ivalidate Region */
+ /* Invalidate Region */
cacheInvalidateRegion((void*)0, IRAM_SIZE);
}
|