Lines Matching refs:size
1072 int ret, size;
1094 /* Get manifest size using control protocol on CPort */
1095 size = gb_control_get_manifest_size_operation(intf);
1096 if (size <= 0) {
1097 dev_err(&intf->dev, "failed to get manifest size: %d\n", size);
1099 if (size)
1100 ret = size;
1107 manifest = kmalloc(size, GFP_KERNEL);
1114 ret = gb_control_get_manifest_operation(intf, manifest, size);
1124 if (!gb_manifest_parse(intf, manifest, size)) {