Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7ca7ec40 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

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: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3c9b8aaf
Loading
Loading
Loading
Loading
+2 −10
Original line number Diff line number Diff line
@@ -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){