diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2007-01-15 20:22:02 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-02-07 10:37:12 -0800 |
commit | f30c53a873d0d227493197064b8886af2d57bbd6 (patch) | |
tree | cd051f14effbbb015a1bae6fe5bfabcf14037f13 /include/linux/module.h | |
parent | c744aeae9d173a953b771a7ad5c872f91fa99dec (diff) | |
download | talos-op-linux-f30c53a873d0d227493197064b8886af2d57bbd6.tar.gz talos-op-linux-f30c53a873d0d227493197064b8886af2d57bbd6.zip |
MODULES: add the module name for built in kernel drivers
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/module.h')
-rw-r--r-- | include/linux/module.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/module.h b/include/linux/module.h index 10f771a49997..90dc2542978c 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -58,6 +58,7 @@ struct module_kobject { struct kobject kobj; struct module *mod; + struct kobject *drivers_dir; }; /* These are either module local, or the kernel's dummy ones. */ @@ -263,7 +264,6 @@ struct module struct module_attribute *modinfo_attrs; const char *version; const char *srcversion; - struct kobject *drivers_dir; /* Exported symbols */ const struct kernel_symbol *syms; |