Lines Matching refs:element
505 struct port_table_attribute *element; in alloc_group_attrs() local
513 element = kzalloc(sizeof (struct port_table_attribute), in alloc_group_attrs()
515 if (!element) in alloc_group_attrs()
517 if (snprintf(element->name, sizeof (element->name), in alloc_group_attrs()
518 "%d", i) >= sizeof (element->name)) { in alloc_group_attrs()
519 kfree(element); in alloc_group_attrs()
522 sysfs_attr_init(&element->attr.attr); in alloc_group_attrs()
523 element->attr.attr.name = element->name; in alloc_group_attrs()
525 element->attr.attr.mode = S_IWUSR | S_IRUGO; in alloc_group_attrs()
526 element->attr.store = store; in alloc_group_attrs()
528 element->attr.attr.mode = S_IRUGO; in alloc_group_attrs()
530 element->attr.show = show; in alloc_group_attrs()
531 element->index = i; in alloc_group_attrs()
532 tab_attr[i] = &element->attr.attr; in alloc_group_attrs()