From: Adrian Bunk Make fives needlessly global functions static. Signed-off-by: Adrian Bunk Signed-off-by: Andrew Morton --- kernel/synchro-test.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff -puN kernel/synchro-test.c~mutex-subsystem-synchro-test-module-fix kernel/synchro-test.c --- devel/kernel/synchro-test.c~mutex-subsystem-synchro-test-module-fix 2006-01-07 14:41:06.000000000 -0800 +++ devel-akpm/kernel/synchro-test.c 2006-01-07 14:41:06.000000000 -0800 @@ -221,7 +221,7 @@ static inline void sched(void) schedule(); } -int mutexer(void *arg) +static int mutexer(void *arg) { unsigned int N = (unsigned long) arg; @@ -243,7 +243,7 @@ int mutexer(void *arg) complete_and_exit(&mx_comp[N], 0); } -int semaphorer(void *arg) +static int semaphorer(void *arg) { unsigned int N = (unsigned long) arg; @@ -265,7 +265,7 @@ int semaphorer(void *arg) complete_and_exit(&sm_comp[N], 0); } -int reader(void *arg) +static int reader(void *arg) { unsigned int N = (unsigned long) arg; @@ -289,7 +289,7 @@ int reader(void *arg) complete_and_exit(&rd_comp[N], 0); } -int writer(void *arg) +static int writer(void *arg) { unsigned int N = (unsigned long) arg; @@ -313,7 +313,7 @@ int writer(void *arg) complete_and_exit(&wr_comp[N], 0); } -int downgrader(void *arg) +static int downgrader(void *arg) { unsigned int N = (unsigned long) arg; _