drivers/base/node: clean up attribute group conversion

We can use the ATTRIBUTE_GROUPS() macro here, so use it, saving some
lines of code.

Cc: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman gregkh@linuxfoundation.org
This commit is contained in:
Greg Kroah-Hartman 2015-03-25 13:47:17 +01:00
parent 3c9b8aaf95
commit 7ca7ec40f4

View file

@ -209,15 +209,7 @@ static struct attribute *node_dev_attrs[] = {
&dev_attr_vmstat.attr,
NULL
};
static struct attribute_group node_dev_attr_group = {
.attrs = node_dev_attrs,
};
static const struct attribute_group *node_dev_attr_groups[] = {
&node_dev_attr_group,
NULL
};
ATTRIBUTE_GROUPS(node_dev);
#ifdef CONFIG_HUGETLBFS
/*
@ -292,7 +284,7 @@ static int register_node(struct node *node, int num, struct node *parent)
node->dev.id = num;
node->dev.bus = &node_subsys;
node->dev.release = node_device_release;
node->dev.groups = node_dev_attr_groups;
node->dev.groups = node_dev_groups;
error = device_register(&node->dev);
if (!error){