From: Adrian Bunk <bunk@stusta.de>

This patch makes a needlessly global function static.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
---

 kernel/module.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN kernel/module.c~kernel-modulec-make-a-function-static kernel/module.c
--- 25/kernel/module.c~kernel-modulec-make-a-function-static	2005-05-31 02:51:19.000000000 -0700
+++ 25-akpm/kernel/module.c	2005-05-31 02:51:19.000000000 -0700
@@ -730,7 +730,7 @@ static int obsparm_copy_string(const cha
 	return 0;
 }
 
-int set_obsolete(const char *val, struct kernel_param *kp)
+static int set_obsolete(const char *val, struct kernel_param *kp)
 {
 	unsigned int min, max;
 	unsigned int size, maxsize;
_