Lines Matching refs:element
502 struct port_table_attribute *element; in alloc_group_attrs() local
510 element = kzalloc(sizeof (struct port_table_attribute), in alloc_group_attrs()
512 if (!element) in alloc_group_attrs()
514 if (snprintf(element->name, sizeof (element->name), in alloc_group_attrs()
515 "%d", i) >= sizeof (element->name)) { in alloc_group_attrs()
516 kfree(element); in alloc_group_attrs()
519 sysfs_attr_init(&element->attr.attr); in alloc_group_attrs()
520 element->attr.attr.name = element->name; in alloc_group_attrs()
522 element->attr.attr.mode = S_IWUSR | S_IRUGO; in alloc_group_attrs()
523 element->attr.store = store; in alloc_group_attrs()
525 element->attr.attr.mode = S_IRUGO; in alloc_group_attrs()
527 element->attr.show = show; in alloc_group_attrs()
528 element->index = i; in alloc_group_attrs()
529 tab_attr[i] = &element->attr.attr; in alloc_group_attrs()