diff options
author | Matt Fleming <matt.fleming@intel.com> | 2015-01-12 12:33:25 +0300 |
---|---|---|
committer | Matt Fleming <matt.fleming@intel.com> | 2015-01-12 12:33:25 +0300 |
commit | 17473c32ce23568d39b076bf56159894bea1c61f (patch) | |
tree | a0f37ab2301332d57b8632603d8835a1564f3acc /drivers/firmware/efi/efi.c | |
parent | 62c204ddfe9649f0b1d273549f4bd68c23ed7c0d (diff) | |
parent | 26e022727f5e88c6e5054e14d954425deacbe56a (diff) | |
download | linux-17473c32ce23568d39b076bf56159894bea1c61f.tar.xz |
Merge tag 'rneri-efi-next' of https://github.com/ricardon/efi into next
Pull EFI changes for v3.20 from Ricardo Neri, who kindly picked them up
while I was out on annual leave in December.
Updates included:
*Rename the function efi_guid_unparse to reflect better its behavior. - Borislav Petkov
*Update the EFI firmware Kconfig help with the URL of efibootmgr. - Peter Jones
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'drivers/firmware/efi/efi.c')
-rw-r--r-- | drivers/firmware/efi/efi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/firmware/efi/efi.c b/drivers/firmware/efi/efi.c index 8590099ac148..ff0bbe383b31 100644 --- a/drivers/firmware/efi/efi.c +++ b/drivers/firmware/efi/efi.c @@ -272,10 +272,10 @@ static __init int match_config_table(efi_guid_t *guid, int i; if (table_types) { - efi_guid_unparse(guid, str); + efi_guid_to_str(guid, str); for (i = 0; efi_guidcmp(table_types[i].guid, NULL_GUID); i++) { - efi_guid_unparse(&table_types[i].guid, str); + efi_guid_to_str(&table_types[i].guid, str); if (!efi_guidcmp(*guid, table_types[i].guid)) { *(table_types[i].ptr) = table; |