summaryrefslogtreecommitdiff
path: root/nuttx/arch
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/arch')
-rw-r--r--nuttx/arch/arm/src/armv7-a/cache.h8
-rwxr-xr-xnuttx/arch/arm/src/armv7-a/cp15_clean_dcache.S2
-rwxr-xr-xnuttx/arch/arm/src/armv7-a/cp15_coherent_dcache.S2
-rwxr-xr-xnuttx/arch/arm/src/armv7-a/cp15_flush_dcache.S2
-rwxr-xr-xnuttx/arch/arm/src/armv7-a/cp15_invalidate_dcache.S2
5 files changed, 8 insertions, 8 deletions
diff --git a/nuttx/arch/arm/src/armv7-a/cache.h b/nuttx/arch/arm/src/armv7-a/cache.h
index aa1c7c3f1..583a9ec4c 100644
--- a/nuttx/arch/arm/src/armv7-a/cache.h
+++ b/nuttx/arch/arm/src/armv7-a/cache.h
@@ -901,7 +901,7 @@ extern "C" {
*
* Input Parameters:
* start - virtual start address of region
- * end - virtual end address of region
+ * end - virtual end address of region + 1
*
* Returned Value:
* None
@@ -920,7 +920,7 @@ void cp15_coherent_dcache(uintptr_t start, uintptr_t end);
*
* Input Parameters:
* start - virtual start address of region
- * end - virtual end address of region
+ * end - virtual end address of region + 1
*
* Returned Value:
* None
@@ -954,7 +954,7 @@ void cp15_invalidate_dcache_all(void);
*
* Input Parameters:
* start - virtual start address of region
- * end - virtual end address of region
+ * end - virtual end address of region + 1
*
* Returned Value:
* None
@@ -972,7 +972,7 @@ void cp15_clean_dcache(uintptr_t start, uintptr_t end);
*
* Input Parameters:
* start - virtual start address of region
- * end - virtual end address of region
+ * end - virtual end address of region + 1
*
* Returned Value:
* None
diff --git a/nuttx/arch/arm/src/armv7-a/cp15_clean_dcache.S b/nuttx/arch/arm/src/armv7-a/cp15_clean_dcache.S
index 24508f4d1..fdc7513ed 100755
--- a/nuttx/arch/arm/src/armv7-a/cp15_clean_dcache.S
+++ b/nuttx/arch/arm/src/armv7-a/cp15_clean_dcache.S
@@ -80,7 +80,7 @@
*
* Input Parameters:
* start - virtual start address of region
- * end - virtual end address of region
+ * end - virtual end address of region + 1
*
* Returned Value:
* None
diff --git a/nuttx/arch/arm/src/armv7-a/cp15_coherent_dcache.S b/nuttx/arch/arm/src/armv7-a/cp15_coherent_dcache.S
index 40e7d5919..3be2d666d 100755
--- a/nuttx/arch/arm/src/armv7-a/cp15_coherent_dcache.S
+++ b/nuttx/arch/arm/src/armv7-a/cp15_coherent_dcache.S
@@ -82,7 +82,7 @@
*
* Input Parameters:
* start - virtual start address of region
- * end - virtual end address of region
+ * end - virtual end address of region + 1
*
* Returned Value:
* None
diff --git a/nuttx/arch/arm/src/armv7-a/cp15_flush_dcache.S b/nuttx/arch/arm/src/armv7-a/cp15_flush_dcache.S
index 9ff8e1972..2e21db598 100755
--- a/nuttx/arch/arm/src/armv7-a/cp15_flush_dcache.S
+++ b/nuttx/arch/arm/src/armv7-a/cp15_flush_dcache.S
@@ -80,7 +80,7 @@
*
* Input Parameters:
* start - virtual start address of region
- * end - virtual end address of region
+ * end - virtual end address of region + 1
*
* Returned Value:
* None
diff --git a/nuttx/arch/arm/src/armv7-a/cp15_invalidate_dcache.S b/nuttx/arch/arm/src/armv7-a/cp15_invalidate_dcache.S
index dcc44dc10..5e0defbfc 100755
--- a/nuttx/arch/arm/src/armv7-a/cp15_invalidate_dcache.S
+++ b/nuttx/arch/arm/src/armv7-a/cp15_invalidate_dcache.S
@@ -81,7 +81,7 @@
*
* Input Parameters:
* start - virtual start address of region
- * end - virtual end address of region
+ * end - virtual end address of region + 1
*
* Returned Value:
* None