mirror of
https://github.com/fail0verflow/switch-linux.git
synced 2025-05-04 02:34:21 -04:00
sysfs: group.c: add kerneldoc for sysfs_remove_group
sysfs_remove_group() never had kerneldoc, so add it, and fix up the kerneldoc for sysfs_remove_groups() which didn't specify the parameters properly. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
16aebf1c5d
commit
f9ae443b5a
1 changed files with 10 additions and 2 deletions
|
@ -189,6 +189,14 @@ int sysfs_update_group(struct kobject *kobj,
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(sysfs_update_group);
|
EXPORT_SYMBOL_GPL(sysfs_update_group);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sysfs_remove_group: remove a group from a kobject
|
||||||
|
* @kobj: kobject to remove the group from
|
||||||
|
* @grp: group to remove
|
||||||
|
*
|
||||||
|
* This function removes a group of attributes from a kobject. The attributes
|
||||||
|
* previously have to have been created for this group, otherwise it will fail.
|
||||||
|
*/
|
||||||
void sysfs_remove_group(struct kobject *kobj,
|
void sysfs_remove_group(struct kobject *kobj,
|
||||||
const struct attribute_group *grp)
|
const struct attribute_group *grp)
|
||||||
{
|
{
|
||||||
|
@ -217,8 +225,8 @@ EXPORT_SYMBOL_GPL(sysfs_remove_group);
|
||||||
/**
|
/**
|
||||||
* sysfs_remove_groups - remove a list of groups
|
* sysfs_remove_groups - remove a list of groups
|
||||||
*
|
*
|
||||||
* kobj: The kobject for the groups to be removed from
|
* @kobj: The kobject for the groups to be removed from
|
||||||
* groups: NULL terminated list of groups to be removed
|
* @groups: NULL terminated list of groups to be removed
|
||||||
*
|
*
|
||||||
* If groups is not NULL, the all groups will be removed from the kobject
|
* If groups is not NULL, the all groups will be removed from the kobject
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue