<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
From: Adrian Bunk &lt;bunk@stusta.de&gt;

This patch makes a needlessly global function static.

Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
---

 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;
_
</pre></body></html>