Lines Matching refs:element
500 struct port_table_attribute *element; in alloc_group_attrs() local
508 element = kzalloc(sizeof (struct port_table_attribute), in alloc_group_attrs()
510 if (!element) in alloc_group_attrs()
512 if (snprintf(element->name, sizeof (element->name), in alloc_group_attrs()
513 "%d", i) >= sizeof (element->name)) { in alloc_group_attrs()
514 kfree(element); in alloc_group_attrs()
517 sysfs_attr_init(&element->attr.attr); in alloc_group_attrs()
518 element->attr.attr.name = element->name; in alloc_group_attrs()
520 element->attr.attr.mode = S_IWUSR | S_IRUGO; in alloc_group_attrs()
521 element->attr.store = store; in alloc_group_attrs()
523 element->attr.attr.mode = S_IRUGO; in alloc_group_attrs()
525 element->attr.show = show; in alloc_group_attrs()
526 element->index = i; in alloc_group_attrs()
527 tab_attr[i] = &element->attr.attr; in alloc_group_attrs()