Lines Matching refs:struct_in
34 #define USB_CONFIG_STRING_RW_OPS(struct_in) \ argument
35 static struct configfs_item_operations struct_in##_langid_item_ops = { \
36 .release = struct_in##_attr_release, \
39 static struct config_item_type struct_in##_langid_type = { \
40 .ct_item_ops = &struct_in##_langid_item_ops, \
41 .ct_attrs = struct_in##_langid_attrs, \
45 #define USB_CONFIG_STRINGS_LANG(struct_in, struct_member) \ argument
46 static struct config_group *struct_in##_strings_make( \
51 struct struct_in *gs; \
52 struct struct_in *new; \
64 &struct_in##_langid_type); \
84 static void struct_in##_strings_drop( \
91 static struct configfs_group_operations struct_in##_strings_ops = { \
92 .make_group = &struct_in##_strings_make, \
93 .drop_item = &struct_in##_strings_drop, \
96 static struct config_item_type struct_in##_strings_type = { \
97 .ct_group_ops = &struct_in##_strings_ops, \