Lines Matching refs:struct_in
39 #define USB_CONFIG_STRING_RW_OPS(struct_in) \ argument
40 CONFIGFS_ATTR_OPS(struct_in); \
42 static struct configfs_item_operations struct_in##_langid_item_ops = { \
43 .release = struct_in##_attr_release, \
44 .show_attribute = struct_in##_attr_show, \
45 .store_attribute = struct_in##_attr_store, \
48 static struct config_item_type struct_in##_langid_type = { \
49 .ct_item_ops = &struct_in##_langid_item_ops, \
50 .ct_attrs = struct_in##_langid_attrs, \
54 #define USB_CONFIG_STRINGS_LANG(struct_in, struct_member) \ argument
55 static struct config_group *struct_in##_strings_make( \
60 struct struct_in *gs; \
61 struct struct_in *new; \
73 &struct_in##_langid_type); \
93 static void struct_in##_strings_drop( \
100 static struct configfs_group_operations struct_in##_strings_ops = { \
101 .make_group = &struct_in##_strings_make, \
102 .drop_item = &struct_in##_strings_drop, \
105 static struct config_item_type struct_in##_strings_type = { \
106 .ct_group_ops = &struct_in##_strings_ops, \