按照这个链接
我做了:
static const struct attribute const *attrs1= {
&foo_attribute.attr,
NULL,
};
static const struct attribute_group const attr_group = {
.attrs = attrs1,
};
但得到这些错误:
error: initializer element is not constant
error: (near initialization for 'attr_group.attrs')
找到了这个解决方案,但不明白如何解决它......
编辑: 该行触发了错误:
.attrs = attrs1,