Commit 4396c00b authored by Johan Hovold's avatar Johan Hovold Committed by Greg Kroah-Hartman

greybus: bundle: rename class attribute

Rename the bundle class-attribute "bundle_class" for consistency reasons
and to make it self documenting.
Signed-off-by: default avatarJohan Hovold <johan@hovoldconsulting.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent 320421a8
...@@ -9,14 +9,14 @@ ...@@ -9,14 +9,14 @@
#include "greybus.h" #include "greybus.h"
static ssize_t class_show(struct device *dev, struct device_attribute *attr, static ssize_t bundle_class_show(struct device *dev,
char *buf) struct device_attribute *attr, char *buf)
{ {
struct gb_bundle *bundle = to_gb_bundle(dev); struct gb_bundle *bundle = to_gb_bundle(dev);
return sprintf(buf, "%d\n", bundle->class); return sprintf(buf, "%d\n", bundle->class);
} }
static DEVICE_ATTR_RO(class); static DEVICE_ATTR_RO(bundle_class);
static ssize_t state_show(struct device *dev, struct device_attribute *attr, static ssize_t state_show(struct device *dev, struct device_attribute *attr,
char *buf) char *buf)
...@@ -48,7 +48,7 @@ static DEVICE_ATTR_RW(state); ...@@ -48,7 +48,7 @@ static DEVICE_ATTR_RW(state);
static struct attribute *bundle_attrs[] = { static struct attribute *bundle_attrs[] = {
&dev_attr_class.attr, &dev_attr_bundle_class.attr,
&dev_attr_state.attr, &dev_attr_state.attr,
NULL, NULL,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment