aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/module.h
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2010-06-05 13:17:36 -0400
committerRusty Russell <rusty@rustcorp.com.au>2010-06-04 21:47:36 -0400
commit6407ebb271fc34440b306f305e1efb7685eece26 (patch)
treedd3fa7484bcaa4499138d2249dbed24f003fdf85 /include/linux/module.h
parent80a3d1bb410e000e176931a076cdf19a1e89a955 (diff)
module: Make module sysfs functions private.
These were placed in the header in ef665c1a06 to get the various SYSFS/MODULE config combintations to compile. That may have been necessary then, but it's not now. These functions are all local to module.c. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Cc: Randy Dunlap <randy.dunlap@oracle.com>
Diffstat (limited to 'include/linux/module.h')
-rw-r--r--include/linux/module.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/include/linux/module.h b/include/linux/module.h
index 5d8fca5dcff5..8a6b9fdc7ffa 100644
--- a/include/linux/module.h
+++ b/include/linux/module.h
@@ -672,43 +672,10 @@ static inline int module_get_iter_tracepoints(struct tracepoint_iter *iter)
672 672
673#endif /* CONFIG_MODULES */ 673#endif /* CONFIG_MODULES */
674 674
675struct device_driver;
676#ifdef CONFIG_SYSFS 675#ifdef CONFIG_SYSFS
677struct module;
678
679extern struct kset *module_kset; 676extern struct kset *module_kset;
680extern struct kobj_type module_ktype; 677extern struct kobj_type module_ktype;
681extern int module_sysfs_initialized; 678extern int module_sysfs_initialized;
682
683int mod_sysfs_init(struct module *mod);
684int mod_sysfs_setup(struct module *mod,
685 struct kernel_param *kparam,
686 unsigned int num_params);
687int module_add_modinfo_attrs(struct module *mod);
688void module_remove_modinfo_attrs(struct module *mod);
689
690#else /* !CONFIG_SYSFS */
691
692static inline int mod_sysfs_init(struct module *mod)
693{
694 return 0;
695}
696
697static inline int mod_sysfs_setup(struct module *mod,
698 struct kernel_param *kparam,
699 unsigned int num_params)
700{
701 return 0;
702}
703
704static inline int module_add_modinfo_attrs(struct module *mod)
705{
706 return 0;
707}
708
709static inline void module_remove_modinfo_attrs(struct module *mod)
710{ }
711
712#endif /* CONFIG_SYSFS */ 679#endif /* CONFIG_SYSFS */
713 680
714#define symbol_request(x) try_then_request_module(symbol_get(x), "symbol:" #x) 681#define symbol_request(x) try_then_request_module(symbol_get(x), "symbol:" #x)