diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2007-11-02 13:47:53 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-01-24 20:40:22 -0800 |
commit | 000f2a4d8cfc1e1cbc0aa98136015e7ae7719b46 (patch) | |
tree | f501a2d118797a88184a77be089d335c4cc48e88 /lib/kobject.c | |
parent | 4443d07fcfab39c4d2d9d7711cff983f15b374fc (diff) | |
download | linux-3.10-000f2a4d8cfc1e1cbc0aa98136015e7ae7719b46.tar.gz linux-3.10-000f2a4d8cfc1e1cbc0aa98136015e7ae7719b46.tar.bz2 linux-3.10-000f2a4d8cfc1e1cbc0aa98136015e7ae7719b46.zip |
Driver Core: kill subsys_attribute and default sysfs ops
Remove the no longer needed subsys_attributes, they are all converted to
the more sensical kobj_attributes.
There is no longer a magic fallback in sysfs attribute operations, all
kobjects which create simple attributes need explicitely a ktype
assigned, which tells the core what was intended here.
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'lib/kobject.c')
-rw-r--r-- | lib/kobject.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/kobject.c b/lib/kobject.c index 99f6354a575..c742ac25228 100644 --- a/lib/kobject.c +++ b/lib/kobject.c @@ -810,26 +810,6 @@ void subsystem_unregister(struct kset *s) kset_unregister(s); } -/** - * subsystem_create_file - export sysfs attribute file. - * @s: subsystem. - * @a: subsystem attribute descriptor. - */ - -int subsys_create_file(struct kset *s, struct subsys_attribute *a) -{ - int error = 0; - - if (!s || !a) - return -EINVAL; - - if (kset_get(s)) { - error = sysfs_create_file(&s->kobj, &a->attr); - kset_put(s); - } - return error; -} - static void kset_release(struct kobject *kobj) { struct kset *kset = container_of(kobj, struct kset, kobj); @@ -927,4 +907,3 @@ EXPORT_SYMBOL(kset_unregister); EXPORT_SYMBOL(subsystem_register); EXPORT_SYMBOL(subsystem_unregister); -EXPORT_SYMBOL(subsys_create_file); |