Deleted Added
full compact
29c29
< "$FreeBSD: head/sys/boot/efi/libefi/libefi.c 107723 2002-12-10 06:22:25Z marcel $";
---
> "$FreeBSD: head/sys/boot/efi/libefi/libefi.c 107733 2002-12-10 20:11:20Z marcel $";
61a62,75
> void *
> efi_get_table(EFI_GUID *tbl)
> {
> EFI_GUID *id;
> int i;
>
> for (i = 0; i < ST->NumberOfTableEntries; i++) {
> id = &ST->ConfigurationTable[i].VendorGuid;
> if (!memcmp(id, tbl, sizeof(EFI_GUID)))
> return (ST->ConfigurationTable[i].VendorTable);
> }
> return (NULL);
> }
>