forked from Minki/linux
staging: ccree: Remove a attribute group from a kobject
All attribute group created during sys_init_dir() should be removed in sys_free_dir() Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a5eb2188f5
commit
8b075122ee
@ -162,8 +162,11 @@ static void sys_free_dir(struct sys_dir *sys_dir)
|
||||
|
||||
kfree(sys_dir->sys_dir_attr_list);
|
||||
|
||||
if (sys_dir->sys_dir_kobj)
|
||||
if (sys_dir->sys_dir_kobj) {
|
||||
sysfs_remove_group(sys_dir->sys_dir_kobj,
|
||||
&sys_dir->sys_dir_attr_group);
|
||||
kobject_put(sys_dir->sys_dir_kobj);
|
||||
}
|
||||
}
|
||||
|
||||
int ssi_sysfs_init(struct kobject *sys_dev_obj, struct ssi_drvdata *drvdata)
|
||||
|
Loading…
Reference in New Issue
Block a user