summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2007-11-01 21:31:26 +0100
committerGreg Kroah-Hartman <gregkh@suse.de>2008-01-25 05:40:31 +0100
commitcc972e896b303f453f5893ecf8eca0d0e395ab64 (patch)
tree66eb0b8ce2046625c551d45f0f2d69f6b8821a5b
parentKobject: convert net/bridge/br_if.c to use kobject_init/add_ng() (diff)
downloadlinux-cc972e896b303f453f5893ecf8eca0d0e395ab64.tar.xz
linux-cc972e896b303f453f5893ecf8eca0d0e395ab64.zip
driver core: remove owner field from struct bus_type
This isn't used by anything in the driver core, and by no one in the 204 different usages of it in the kernel tree. Remove this field so no one gets any idea that it is needed to be used. Cc: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--include/linux/device.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/device.h b/include/linux/device.h
index a3b3ff15fc87..313e0b32bc09 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -51,7 +51,6 @@ extern void bus_remove_file(struct bus_type *, struct bus_attribute *);
struct bus_type {
const char * name;
- struct module * owner;
struct kset subsys;
struct kset *drivers_kset;