Lines Matching refs:element
506 struct port_table_attribute *element; in alloc_group_attrs() local
514 element = kzalloc(sizeof (struct port_table_attribute), in alloc_group_attrs()
516 if (!element) in alloc_group_attrs()
518 if (snprintf(element->name, sizeof (element->name), in alloc_group_attrs()
519 "%d", i) >= sizeof (element->name)) { in alloc_group_attrs()
520 kfree(element); in alloc_group_attrs()
523 sysfs_attr_init(&element->attr.attr); in alloc_group_attrs()
524 element->attr.attr.name = element->name; in alloc_group_attrs()
526 element->attr.attr.mode = S_IWUSR | S_IRUGO; in alloc_group_attrs()
527 element->attr.store = store; in alloc_group_attrs()
529 element->attr.attr.mode = S_IRUGO; in alloc_group_attrs()
531 element->attr.show = show; in alloc_group_attrs()
532 element->index = i; in alloc_group_attrs()
533 tab_attr[i] = &element->attr.attr; in alloc_group_attrs()