Lines Matching defs:manifest
1063 * manifest and other information over it, and finally registering its child
1073 void *manifest;
1094 /* Get manifest size using control protocol on CPort */
1097 dev_err(&intf->dev, "failed to get manifest size: %d\n", size);
1107 manifest = kmalloc(size, GFP_KERNEL);
1108 if (!manifest) {
1113 /* Get manifest using control protocol on CPort */
1114 ret = gb_control_get_manifest_operation(intf, manifest, size);
1116 dev_err(&intf->dev, "failed to get manifest: %d\n", ret);
1121 * Parse the manifest and build up our data structures representing
1124 if (!gb_manifest_parse(intf, manifest, size)) {
1125 dev_err(&intf->dev, "failed to parse manifest\n");
1152 kfree(manifest);
1166 kfree(manifest);