Renamed core driver dependency to be "dash" style aligned

Signed-off-by: alexander <alexander.efremov@arm.com>
Change-Id: I86b1d658ddd9aa717eb571286a9e5f5e053725cf
diff --git a/.gitmodules b/.gitmodules
index 06532f6..12a4df7 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -5,7 +5,7 @@
 	path = dependencies/cmsis
 	url = https://github.com/ARM-software/CMSIS_5.git
 [submodule "dependencies/core_driver"]
-	path = dependencies/core_driver
+	path = dependencies/core-driver
 	url = https://review.mlplatform.org/ml/ethos-u/ethos-u-core-driver
 [submodule "dependencies/core-software"]
 	path = dependencies/core-software
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cefc86e..fa84b3e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -175,7 +175,7 @@
 
     USER_OPTION(ETHOS_U55_DRIVER_SRC_PATH
         "Path to Ethos-U55 core driver sources"
-        "${CMAKE_CURRENT_SOURCE_DIR}/dependencies/core_driver"
+        "${CMAKE_CURRENT_SOURCE_DIR}/dependencies/core-driver"
         PATH
         )
 
diff --git a/dependencies/core_driver b/dependencies/core-driver
similarity index 100%
rename from dependencies/core_driver
rename to dependencies/core-driver
diff --git a/docs/sections/building.md b/docs/sections/building.md
index ff5b518..7bd01d1 100644
--- a/docs/sections/building.md
+++ b/docs/sections/building.md
@@ -371,12 +371,13 @@
 If the TensorFlow source tree is not in its default expected location, set the path
 using `TENSORFLOW_SRC_PATH`. Similarly, if the Ethos-U55 NPU driver and CMSIS are
 not in the default location, `ETHOS_U55_DRIVER_SRC_PATH` and `CMSIS_SRC_PATH` can be
-used to configure their location. For example:
+used to configure their location.
+For example:
 
 ```commandline
 cmake .. \
     -DTENSORFLOW_SRC_PATH=/my/custom/location/tensorflow \
-    -DETHOS_U55_DRIVER_SRC_PATH=/my/custom/location/core_driver \
+    -DETHOS_U55_DRIVER_SRC_PATH=/my/custom/location/core-driver \
     -DCMSIS_SRC_PATH=/my/custom/location/cmsis
 ```