提交 4e9072d6 编写于 作者: G Greg Kroah-Hartman

ssb: convert bus code to use dev_groups

The dev_attrs field of struct bus_type is going away soon, dev_groups
should be used instead.  This converts the ssb bus code to use the
correct field.

Cc: Michael Buesch <m@bues.ch>
Cc: <netdev@vger.kernel.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 6d39c80b
...@@ -374,7 +374,8 @@ static ssize_t \ ...@@ -374,7 +374,8 @@ static ssize_t \
attrib##_show(struct device *dev, struct device_attribute *attr, char *buf) \ attrib##_show(struct device *dev, struct device_attribute *attr, char *buf) \
{ \ { \
return sprintf(buf, format_string, dev_to_ssb_dev(dev)->field); \ return sprintf(buf, format_string, dev_to_ssb_dev(dev)->field); \
} } \
static DEVICE_ATTR_RO(attrib);
ssb_config_attr(core_num, core_index, "%u\n") ssb_config_attr(core_num, core_index, "%u\n")
ssb_config_attr(coreid, id.coreid, "0x%04x\n") ssb_config_attr(coreid, id.coreid, "0x%04x\n")
...@@ -387,16 +388,18 @@ name_show(struct device *dev, struct device_attribute *attr, char *buf) ...@@ -387,16 +388,18 @@ name_show(struct device *dev, struct device_attribute *attr, char *buf)
return sprintf(buf, "%s\n", return sprintf(buf, "%s\n",
ssb_core_name(dev_to_ssb_dev(dev)->id.coreid)); ssb_core_name(dev_to_ssb_dev(dev)->id.coreid));
} }
static DEVICE_ATTR_RO(name);
static struct device_attribute ssb_device_attrs[] = {
__ATTR_RO(name), static struct attribute *ssb_device_attrs[] = {
__ATTR_RO(core_num), &dev_attr_name.attr,
__ATTR_RO(coreid), &dev_attr_core_num.attr,
__ATTR_RO(vendor), &dev_attr_coreid.attr,
__ATTR_RO(revision), &dev_attr_vendor.attr,
__ATTR_RO(irq), &dev_attr_revision.attr,
__ATTR_NULL, &dev_attr_irq.attr,
NULL,
}; };
ATTRIBUTE_GROUPS(ssb_device);
static struct bus_type ssb_bustype = { static struct bus_type ssb_bustype = {
.name = "ssb", .name = "ssb",
...@@ -407,7 +410,7 @@ static struct bus_type ssb_bustype = { ...@@ -407,7 +410,7 @@ static struct bus_type ssb_bustype = {
.suspend = ssb_device_suspend, .suspend = ssb_device_suspend,
.resume = ssb_device_resume, .resume = ssb_device_resume,
.uevent = ssb_device_uevent, .uevent = ssb_device_uevent,
.dev_attrs = ssb_device_attrs, .dev_groups = ssb_device_groups,
}; };
static void ssb_buses_lock(void) static void ssb_buses_lock(void)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册