mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
sysfs.h: add ATTRIBUTE_GROUPS() macro
commit f2f37f58b1
upstream.
To make it easier for driver subsystems to work with attribute groups,
create the ATTRIBUTE_GROUPS macro to remove some of the repetitive
typing for the most common use for attribute groups.
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Tested-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Zefan Li <lizefan@huawei.com>
This commit is contained in:
parent
5b724689fa
commit
aa12b754cf
1 changed files with 9 additions and 0 deletions
|
@ -80,6 +80,15 @@ struct attribute_group {
|
|||
|
||||
#define __ATTR_NULL { .attr = { .name = NULL } }
|
||||
|
||||
#define ATTRIBUTE_GROUPS(name) \
|
||||
static const struct attribute_group name##_group = { \
|
||||
.attrs = name##_attrs, \
|
||||
}; \
|
||||
static const struct attribute_group *name##_groups[] = { \
|
||||
&name##_group, \
|
||||
NULL, \
|
||||
}
|
||||
|
||||
#define attr_name(_attr) (_attr).attr.name
|
||||
|
||||
struct file;
|
||||
|
|
Loading…
Reference in a new issue