summaryrefslogtreecommitdiff
path: root/drivers/base
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2007-09-12 15:06:57 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2007-10-12 14:51:01 -0700
commit1ef4cfac01fb5e98900f5bdb2a722aac1daff11b (patch)
treefcf3e348f87729cc149224f639f3228b1702c9ae /drivers/base
parent6e9d930d167f8957a12a80515f3c417a98296378 (diff)
downloadlinux-3.10-1ef4cfac01fb5e98900f5bdb2a722aac1daff11b.tar.gz
linux-3.10-1ef4cfac01fb5e98900f5bdb2a722aac1daff11b.tar.bz2
linux-3.10-1ef4cfac01fb5e98900f5bdb2a722aac1daff11b.zip
Driver core: remove subsys_get()
There are no more subsystems, it's a kset now so remove the function and the only two users, which are in the driver core. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base')
-rw-r--r--drivers/base/bus.c2
-rw-r--r--drivers/base/class.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/base/bus.c b/drivers/base/bus.c
index 2f775936544..bc38085dbb1 100644
--- a/drivers/base/bus.c
+++ b/drivers/base/bus.c
@@ -728,7 +728,7 @@ EXPORT_SYMBOL_GPL(device_reprobe);
struct bus_type *get_bus(struct bus_type *bus)
{
- return bus ? container_of(subsys_get(&bus->subsys),
+ return bus ? container_of(kset_get(&bus->subsys),
struct bus_type, subsys) : NULL;
}
diff --git a/drivers/base/class.c b/drivers/base/class.c
index 50e34132576..3e9b04c30fb 100644
--- a/drivers/base/class.c
+++ b/drivers/base/class.c
@@ -93,7 +93,7 @@ void class_remove_file(struct class * cls, const struct class_attribute * attr)
static struct class *class_get(struct class *cls)
{
if (cls)
- return container_of(subsys_get(&cls->subsys), struct class, subsys);
+ return container_of(kset_get(&cls->subsys), struct class, subsys);
return NULL;
}