Lines Matching defs:manifest
1064 * manifest and other information over it, and finally registering its child
1074 void *manifest;
1095 /* Get manifest size using control protocol on CPort */
1098 dev_err(&intf->dev, "failed to get manifest size: %d\n", size);
1108 manifest = kmalloc(size, GFP_KERNEL);
1109 if (!manifest) {
1114 /* Get manifest using control protocol on CPort */
1115 ret = gb_control_get_manifest_operation(intf, manifest, size);
1117 dev_err(&intf->dev, "failed to get manifest: %d\n", ret);
1122 * Parse the manifest and build up our data structures representing
1125 if (!gb_manifest_parse(intf, manifest, size)) {
1126 dev_err(&intf->dev, "failed to parse manifest\n");
1153 kfree(manifest);
1167 kfree(manifest);