Lines Matching refs:struct_in
35 #define USB_CONFIG_STRING_RW_OPS(struct_in) \ argument
36 static struct configfs_item_operations struct_in##_langid_item_ops = { \
37 .release = struct_in##_attr_release, \
40 static struct config_item_type struct_in##_langid_type = { \
41 .ct_item_ops = &struct_in##_langid_item_ops, \
42 .ct_attrs = struct_in##_langid_attrs, \
46 #define USB_CONFIG_STRINGS_LANG(struct_in, struct_member) \ argument
47 static struct config_group *struct_in##_strings_make( \
52 struct struct_in *gs; \
53 struct struct_in *new; \
65 &struct_in##_langid_type); \
85 static void struct_in##_strings_drop( \
92 static struct configfs_group_operations struct_in##_strings_ops = { \
93 .make_group = &struct_in##_strings_make, \
94 .drop_item = &struct_in##_strings_drop, \
97 static struct config_item_type struct_in##_strings_type = { \
98 .ct_group_ops = &struct_in##_strings_ops, \