remove coding style check
The coding style check is a wrapper to checkpatch.pl kernel
script, already supported by TF-M.
Signed-off-by: Leonardo Sandoval <leonardo.sandoval@linaro.org>
Change-Id: I88e5ac3eb4df44334ce1a03968cdc87474c3a31a
diff --git a/run-static-checks.sh b/run-static-checks.sh
index 882e9e1..a449796 100755
--- a/run-static-checks.sh
+++ b/run-static-checks.sh
@@ -11,7 +11,7 @@
# Find the absolute path of the scripts' top directory
-cd "$(dirname "$0")/../.."
+cd "$(dirname "$0")"
export CI_ROOT=$(pwd)
cd -
@@ -75,23 +75,6 @@
fi
echo
-# Check coding style
-
-echo 'Checking coding style compliance...'
-echo
-if [ "$IS_CONTINUOUS_INTEGRATION" == 1 ]; then
- "$CI_ROOT"/script/static-checks/static-checks-coding-style.sh
-else
- "$CI_ROOT"/script/static-checks/static-checks-coding-style-entire-src-tree.sh
-fi
-if [ "$?" != 0 ]; then
- echo "Coding style test: FAILURE"
- ((ERROR_COUNT++))
-else
- echo "Coding style test: PASS"
-fi
-echo
-
# Check for any Banned API usage
echo 'Checking Banned API usage...'