aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPer Åstrand <per.astrand@arm.com>2021-01-07 14:14:14 +0100
committerKristofer Jonsson <kristofer.jonsson@arm.com>2021-01-13 11:32:55 +0000
commit895fda86af1daf86304499f3b74a6b930192395a (patch)
tree613499b5cb636cd0d959e0bfc35591f5e11f5a65
parent19a22ae956106af50bab9ab85efe9d488bbaff87 (diff)
downloadethos-u-core-software-895fda86af1daf86304499f3b74a6b930192395a.tar.gz
Rename cplusplus files for consistency
Change-Id: I908ea337ffb7229a33af3364b5374209c7e9df54
-rw-r--r--applications/inference_process/CMakeLists.txt2
-rw-r--r--applications/inference_process/src/inference_process.cpp (renamed from applications/inference_process/src/inference_process.cc)0
-rw-r--r--applications/message_process/CMakeLists.txt2
-rw-r--r--applications/message_process/src/message_process.cpp (renamed from applications/message_process/src/message_process.cc)0
-rw-r--r--drivers/mailbox/CMakeLists.txt2
-rw-r--r--drivers/mailbox/src/mailbox.cpp (renamed from drivers/mailbox/src/mailbox.cc)0
-rw-r--r--drivers/mhu_dummy/CMakeLists.txt2
-rw-r--r--drivers/mhu_dummy/src/mhu_dummy.cpp (renamed from drivers/mhu_dummy/src/mhu_dummy.cc)0
-rw-r--r--drivers/mhu_juno/CMakeLists.txt2
-rw-r--r--drivers/mhu_juno/src/mhu_juno.cpp (renamed from drivers/mhu_juno/src/mhu_juno.cc)0
-rw-r--r--drivers/mhu_v2/CMakeLists.txt2
-rw-r--r--drivers/mhu_v2/src/mhu_v2.cpp (renamed from drivers/mhu_v2/src/mhu_v2.cc)0
12 files changed, 6 insertions, 6 deletions
diff --git a/applications/inference_process/CMakeLists.txt b/applications/inference_process/CMakeLists.txt
index ba9e44b..3348d28 100644
--- a/applications/inference_process/CMakeLists.txt
+++ b/applications/inference_process/CMakeLists.txt
@@ -23,7 +23,7 @@ add_library(inference_process STATIC)
target_include_directories(inference_process PUBLIC include
PRIVATE ${TENSORFLOW_PATH} ${TENSORFLOW_PATH}/tensorflow/lite/micro/tools/make/downloads/flatbuffers/include)
target_link_libraries(inference_process PUBLIC tflu cmsis_core cmsis_device)
-target_sources(inference_process PRIVATE src/inference_process.cc)
+target_sources(inference_process PRIVATE src/inference_process.cpp)
# Set arena size
target_compile_definitions(inference_process PRIVATE TENSOR_ARENA_SIZE=${TR_ARENA_SIZE})
diff --git a/applications/inference_process/src/inference_process.cc b/applications/inference_process/src/inference_process.cpp
index b5ed5c4..b5ed5c4 100644
--- a/applications/inference_process/src/inference_process.cc
+++ b/applications/inference_process/src/inference_process.cpp
diff --git a/applications/message_process/CMakeLists.txt b/applications/message_process/CMakeLists.txt
index 2f7e5cf..ed27dcd 100644
--- a/applications/message_process/CMakeLists.txt
+++ b/applications/message_process/CMakeLists.txt
@@ -16,6 +16,6 @@
# limitations under the License.
#
-add_library(message_process STATIC src/message_process.cc)
+add_library(message_process STATIC src/message_process.cpp)
target_include_directories(message_process PUBLIC include ${LINUX_DRIVER_STACK_PATH}/kernel)
target_link_libraries(message_process PRIVATE cmsis_core inference_process ethosu_mailbox)
diff --git a/applications/message_process/src/message_process.cc b/applications/message_process/src/message_process.cpp
index 13ed8c4..13ed8c4 100644
--- a/applications/message_process/src/message_process.cc
+++ b/applications/message_process/src/message_process.cpp
diff --git a/drivers/mailbox/CMakeLists.txt b/drivers/mailbox/CMakeLists.txt
index bd2dae3..9e56d37 100644
--- a/drivers/mailbox/CMakeLists.txt
+++ b/drivers/mailbox/CMakeLists.txt
@@ -18,4 +18,4 @@
add_library(ethosu_mailbox STATIC)
target_include_directories(ethosu_mailbox PUBLIC include)
-target_sources(ethosu_mailbox PRIVATE src/mailbox.cc)
+target_sources(ethosu_mailbox PRIVATE src/mailbox.cpp)
diff --git a/drivers/mailbox/src/mailbox.cc b/drivers/mailbox/src/mailbox.cpp
index 96c80df..96c80df 100644
--- a/drivers/mailbox/src/mailbox.cc
+++ b/drivers/mailbox/src/mailbox.cpp
diff --git a/drivers/mhu_dummy/CMakeLists.txt b/drivers/mhu_dummy/CMakeLists.txt
index 83943d6..791227f 100644
--- a/drivers/mhu_dummy/CMakeLists.txt
+++ b/drivers/mhu_dummy/CMakeLists.txt
@@ -19,5 +19,5 @@
add_library(ethosu_mhu_dummy STATIC)
target_include_directories(ethosu_mhu_dummy PUBLIC include)
-target_sources(ethosu_mhu_dummy PRIVATE src/mhu_dummy.cc)
+target_sources(ethosu_mhu_dummy PRIVATE src/mhu_dummy.cpp)
target_link_libraries(ethosu_mhu_dummy PRIVATE ethosu_mailbox)
diff --git a/drivers/mhu_dummy/src/mhu_dummy.cc b/drivers/mhu_dummy/src/mhu_dummy.cpp
index 196fb93..196fb93 100644
--- a/drivers/mhu_dummy/src/mhu_dummy.cc
+++ b/drivers/mhu_dummy/src/mhu_dummy.cpp
diff --git a/drivers/mhu_juno/CMakeLists.txt b/drivers/mhu_juno/CMakeLists.txt
index 1dbb6fd..30f298d 100644
--- a/drivers/mhu_juno/CMakeLists.txt
+++ b/drivers/mhu_juno/CMakeLists.txt
@@ -19,5 +19,5 @@
add_library(ethosu_mhu_juno STATIC)
target_include_directories(ethosu_mhu_juno PUBLIC include)
-target_sources(ethosu_mhu_juno PRIVATE src/mhu_juno.cc)
+target_sources(ethosu_mhu_juno PRIVATE src/mhu_juno.cpp)
target_link_libraries(ethosu_mhu_juno PRIVATE ethosu_mailbox)
diff --git a/drivers/mhu_juno/src/mhu_juno.cc b/drivers/mhu_juno/src/mhu_juno.cpp
index 9a58a80..9a58a80 100644
--- a/drivers/mhu_juno/src/mhu_juno.cc
+++ b/drivers/mhu_juno/src/mhu_juno.cpp
diff --git a/drivers/mhu_v2/CMakeLists.txt b/drivers/mhu_v2/CMakeLists.txt
index 2ecf35a..930c957 100644
--- a/drivers/mhu_v2/CMakeLists.txt
+++ b/drivers/mhu_v2/CMakeLists.txt
@@ -19,5 +19,5 @@
add_library(ethosu_mhu_v2 STATIC)
target_include_directories(ethosu_mhu_v2 PUBLIC include)
-target_sources(ethosu_mhu_v2 PRIVATE src/mhu_v2.cc)
+target_sources(ethosu_mhu_v2 PRIVATE src/mhu_v2.cpp)
target_link_libraries(ethosu_mhu_v2 PRIVATE ethosu_mailbox)
diff --git a/drivers/mhu_v2/src/mhu_v2.cc b/drivers/mhu_v2/src/mhu_v2.cpp
index 76336ce..76336ce 100644
--- a/drivers/mhu_v2/src/mhu_v2.cc
+++ b/drivers/mhu_v2/src/mhu_v2.cpp