Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f7998780 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

sysfs: add sysfs_create/remove_groups for when SYSFS is not enabled



We need these functions for when CONFIG_SYSFS=n.

Reported-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 63967685
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -350,6 +350,11 @@ static inline int sysfs_create_group(struct kobject *kobj,
	return 0;
}

static inline int sysfs_create_groups(struct kobject *kobj,
				      const struct attribute_group **groups)
{
}

static inline int sysfs_update_group(struct kobject *kobj,
				const struct attribute_group *grp)
{
@@ -361,6 +366,11 @@ static inline void sysfs_remove_group(struct kobject *kobj,
{
}

static inline void sysfs_remove_groups(struct kobject *kobj,
				       const struct attribute_group **groups)
{
}

static inline int sysfs_add_file_to_group(struct kobject *kobj,
		const struct attribute *attr, const char *group)
{