Hi Heinrich, [...]
> + */ > +static int ecpt_find_guid(struct efi_conformance_profiles_table *ecpt, > + const efi_guid_t *guid) { > + int i; > + > + for (i = 0; i < ecpt->number_of_profiles; ++i) { > + if (!memcmp(&ecpt->conformance_profiles[i], guid, 16)) > + return EFI_ST_SUCCESS; Can't we use guidcmp here? > + } > + efi_st_error("GUID %pU not found\n", guid); > + return EFI_ST_FAILURE; > +} > + > +/* [...] Thanks /Ilias