aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/sysfs.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-08-28 09:51:41 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-08-28 09:51:41 -0700
commit574979c617eb9593f8dfbb804da3f0e00f8bf28e (patch)
treeeb298afb7519734abf04a1a163b8ba646515f1e8 /include/linux/sysfs.h
parentdebugfs: provide debugfs_create_x64() when disabled (diff)
downloadwireguard-linux-574979c617eb9593f8dfbb804da3f0e00f8bf28e.tar.xz
wireguard-linux-574979c617eb9593f8dfbb804da3f0e00f8bf28e.zip
sysfs: sysfs_create_groups returns a value.
When I included the "empty" function for sysfs_create_groups() when CONFIG_SYSFS=n, I forgot to return a value for it, so things blew up the build. This patch fixes that, stupid me. Reported-by: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/sysfs.h')
-rw-r--r--include/linux/sysfs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/sysfs.h b/include/linux/sysfs.h
index e647a1aa0723..11baec7c9b26 100644
--- a/include/linux/sysfs.h
+++ b/include/linux/sysfs.h
@@ -353,6 +353,7 @@ static inline int sysfs_create_group(struct kobject *kobj,
static inline int sysfs_create_groups(struct kobject *kobj,
const struct attribute_group **groups)
{
+ return 0;
}
static inline int sysfs_update_group(struct kobject *kobj,