Commit 1bca238a authored by Patrick Mochel's avatar Patrick Mochel Committed by Linus Torvalds

[driver model] Actually implement sysdev_{create,remove}_file().

parent e5b387c9
...@@ -62,6 +62,19 @@ static struct kobj_type ktype_sysdev = { ...@@ -62,6 +62,19 @@ static struct kobj_type ktype_sysdev = {
.sysfs_ops = &sysfs_ops, .sysfs_ops = &sysfs_ops,
}; };
int sysdev_create_file(struct sys_device * s, struct sysdev_attribute * a)
{
return sysfs_create_file(&s->kobj,&a->attr);
}
void sysdev_remove_file(struct sys_device * s, struct sysdev_attribute * a)
{
sysfs_remove_file(&s->kobj,&a->attr);
}
/* /*
* declare system_subsys * declare system_subsys
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment