diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-03-25 11:07:06 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-25 16:22:52 (GMT) |
commit | 9871728b756646e0d758a966ba00f2c0ff812817 (patch) | |
tree | 32899f2bc1e72d6ba51665b59350e9729e7f5287 /include | |
parent | 8d3b33f67fdc0fb364a1ef6d8fbbea7c2e4e6c98 (diff) | |
download | linux-9871728b756646e0d758a966ba00f2c0ff812817.tar.xz |
[PATCH] kernel/params.c: make param_array() static
param_array() in kernel/params.c can now become static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/moduleparam.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/linux/moduleparam.h b/include/linux/moduleparam.h index b5c98c4..7c0c2c1 100644 --- a/include/linux/moduleparam.h +++ b/include/linux/moduleparam.h @@ -162,13 +162,6 @@ extern int param_array_get(char *buffer, struct kernel_param *kp); extern int param_set_copystring(const char *val, struct kernel_param *kp); extern int param_get_string(char *buffer, struct kernel_param *kp); -int param_array(const char *name, - const char *val, - unsigned int min, unsigned int max, - void *elem, int elemsize, - int (*set)(const char *, struct kernel_param *kp), - int *num); - /* for exporting parameters in /sys/parameters */ struct module; |