diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2008-03-13 09:03:44 +0000 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2008-05-01 21:14:59 +1000 |
commit | a58730c42174672fe0012a4edbe3e38f94ef2bad (patch) | |
tree | 6cd01098614ea8fc00f5eba462a208cc5a038d2a /include/linux/module.h | |
parent | e4c576b911e364737b1bf4f5bfdab1c440713f26 (diff) | |
download | blackbird-obmc-linux-a58730c42174672fe0012a4edbe3e38f94ef2bad.tar.gz blackbird-obmc-linux-a58730c42174672fe0012a4edbe3e38f94ef2bad.zip |
module: make module_sect_attrs private to kernel/module.c
No-one else is using these afaics.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'include/linux/module.h')
-rw-r--r-- | include/linux/module.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/include/linux/module.h b/include/linux/module.h index 819c4e889bf1..a29c2ebb7c38 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -229,23 +229,6 @@ enum module_state MODULE_STATE_GOING, }; -/* Similar stuff for section attributes. */ -struct module_sect_attr -{ - struct module_attribute mattr; - char *name; - unsigned long address; -}; - -struct module_sect_attrs -{ - struct attribute_group grp; - int nsections; - struct module_sect_attr attrs[0]; -}; - -struct module_param_attrs; - struct module { enum module_state state; |