diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-23 15:07:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-23 15:09:00 -0400 |
commit | d2441183dc222d12961ff2201f5086c846505d93 (patch) | |
tree | dcede8bab98871d7fd4739a063c533d6fd79921d /kernel/params.c | |
parent | 88ed86fee6651033de9b7038dac7869a9f19775a (diff) |
Fix compile warning in kernel/params.c
Move free_module_param_attrs() into the CONFIG_MODULES section, since
it's only used inside there. Thus avoiding the warning
kernel/params.c:514: warning: 'free_module_param_attrs' defined but not used
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/params.c')
-rw-r--r-- | kernel/params.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/params.c b/kernel/params.c index b077f1b045d3..a1e3025b19a9 100644 --- a/kernel/params.c +++ b/kernel/params.c | |||
@@ -510,6 +510,7 @@ fail: | |||
510 | return err; | 510 | return err; |
511 | } | 511 | } |
512 | 512 | ||
513 | #ifdef CONFIG_MODULES | ||
513 | static void free_module_param_attrs(struct module_kobject *mk) | 514 | static void free_module_param_attrs(struct module_kobject *mk) |
514 | { | 515 | { |
515 | kfree(mk->mp->grp.attrs); | 516 | kfree(mk->mp->grp.attrs); |
@@ -517,7 +518,6 @@ static void free_module_param_attrs(struct module_kobject *mk) | |||
517 | mk->mp = NULL; | 518 | mk->mp = NULL; |
518 | } | 519 | } |
519 | 520 | ||
520 | #ifdef CONFIG_MODULES | ||
521 | /* | 521 | /* |
522 | * module_param_sysfs_setup - setup sysfs support for one module | 522 | * module_param_sysfs_setup - setup sysfs support for one module |
523 | * @mod: module | 523 | * @mod: module |