diff options
author | Oliver Schinagl <oliver@schinagl.nl> | 2013-07-14 16:05:56 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-07-16 10:57:36 -0700 |
commit | 388a8c353d671d4ea2f638be84cfcbb912afdcf2 (patch) | |
tree | 65ec95b89c0620b909b398d42ef0695fb681dc17 /fs/sysfs | |
parent | 6ab9cea16075ea707022753395f340b67f64304c (diff) | |
download | op-kernel-dev-388a8c353d671d4ea2f638be84cfcbb912afdcf2.zip op-kernel-dev-388a8c353d671d4ea2f638be84cfcbb912afdcf2.tar.gz |
sysfs: prevent warning when only using binary attributes
When only using bin_attrs instead of attrs the kernel prints a warning
and refuses to create the sysfs entry. This fixes that.
Signed-off-by: Oliver Schinagl <oliver@schinagl.nl>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/sysfs')
-rw-r--r-- | fs/sysfs/group.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/sysfs/group.c b/fs/sysfs/group.c index e5719c6..09a1a25 100644 --- a/fs/sysfs/group.c +++ b/fs/sysfs/group.c @@ -93,8 +93,8 @@ static int internal_create_group(struct kobject *kobj, int update, /* Updates may happen before the object has been instantiated */ if (unlikely(update && !kobj->sd)) return -EINVAL; - if (!grp->attrs) { - WARN(1, "sysfs: attrs not set by subsystem for group: %s/%s\n", + if (!grp->attrs && !grp->bin_attrs) { + WARN(1, "sysfs: (bin_)attrs not set by subsystem for group: %s/%s\n", kobj->name, grp->name ? "" : grp->name); return -EINVAL; } |