diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2017-11-06 21:17:42 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2017-12-01 13:22:55 +0100 |
commit | 9f0770ff9c04c43f71bba076203af61ac62e8f3c (patch) | |
tree | 64197972858534dbb71005d83d49ee20e4d177c5 /include/efi.h | |
parent | 32fc2ac3810d87fe76b1e5671936e2404536e3ef (diff) | |
download | u-boot-9f0770ff9c04c43f71bba076203af61ac62e8f3c.tar.gz u-boot-9f0770ff9c04c43f71bba076203af61ac62e8f3c.tar.bz2 u-boot-9f0770ff9c04c43f71bba076203af61ac62e8f3c.zip |
efi_loader: capitalize EFI_LOCATE_SEARCH_TYPE values
Constants should be capitalized.
So rename the values of enum efi_locate_search_type.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/efi.h')
-rw-r--r-- | include/efi.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/efi.h b/include/efi.h index dc8edc8743..2f0be9c86c 100644 --- a/include/efi.h +++ b/include/efi.h @@ -227,9 +227,9 @@ struct efi_time_cap { }; enum efi_locate_search_type { - all_handles, - by_register_notify, - by_protocol + ALL_HANDLES, + BY_REGISTER_NOTIFY, + BY_PROTOCOL }; struct efi_open_protocol_info_entry { |