summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRui Miguel Silva <rui.silva@linaro.org>2022-09-23 09:53:22 +0100
committerRui Miguel Silva <rui.silva@linaro.org>2022-09-23 11:33:01 +0100
commit7772ae31c6c0d92f98ee4a5d8c0c7b2021baaed8 (patch)
tree4f1d53975e770c5a6d10ca1fa8836b0138447aa7
parent22a54ff7ccedaca73dcf6553596ad5a778111768 (diff)
Reduce scope of functions
Reduce the scope of functions, setting them as static. Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
-rw-r--r--test-app.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test-app.c b/test-app.c
index 07fea06..28ed9a3 100644
--- a/test-app.c
+++ b/test-app.c
@@ -120,7 +120,7 @@ enum se_command {
};
/* Desassert the reset signal of the external system#0 harness */
-int es_reset_test(void)
+static int es_reset_test(void)
{
int status;
/* Bring external system out of reset */
@@ -134,7 +134,7 @@ int es_reset_test(void)
* Test MHU connection between HOST <=> ES0 MHU 0 and 1,
* and SE <=> ES0 MHU 0 and 1
*/
-int es_mhu_test(void)
+static int es_mhu_test(void)
{
int status;
int message;
@@ -204,7 +204,7 @@ int es_mhu_test(void)
}
/* Test MHU connection between HOST <=> BP MHU 1 */
-int se_mhu_test(void)
+static int se_mhu_test(void)
{
int status;
int message;
@@ -237,7 +237,7 @@ int se_mhu_test(void)
}
/* Test timer and interrupt driver in boot processor */
-int se_timer_test(void)
+static int se_timer_test(void)
{
int status;
int message = ENCODE(SE_TIMER_ONCE, 0);