diff options
author | Michael Brown <mcb30@ipxe.org> | 2014-08-05 23:07:12 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2014-08-05 23:08:32 +0100 |
commit | 3b42ed477f21ee3f5851dc2993ea670e9edc10f7 (patch) | |
tree | 4123be2ce024110174234f82e6a6bddd414fd86e /src/interface/efi/efi_snp.c | |
parent | 471fdfab79845d63fe1016ae5e5729180fdb0f73 (diff) | |
download | ipxe-3b42ed477f21ee3f5851dc2993ea670e9edc10f7.tar.gz |
[efi] Provide centralised definitions of commonly-used GUIDs
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/interface/efi/efi_snp.c')
-rw-r--r-- | src/interface/efi/efi_snp.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/interface/efi/efi_snp.c b/src/interface/efi/efi_snp.c index dd64fd3b9..b5eeab212 100644 --- a/src/interface/efi/efi_snp.c +++ b/src/interface/efi/efi_snp.c @@ -34,14 +34,6 @@ FILE_LICENCE ( GPL2_OR_LATER ); #include <ipxe/efi/efi_snp.h> #include <usr/autoboot.h> -/** EFI simple network protocol GUID */ -static EFI_GUID efi_simple_network_protocol_guid - = EFI_SIMPLE_NETWORK_PROTOCOL_GUID; - -/** EFI device path protocol GUID */ -static EFI_GUID efi_device_path_protocol_guid - = EFI_DEVICE_PATH_PROTOCOL_GUID; - /** EFI network interface identifier GUID */ static EFI_GUID efi_nii_protocol_guid = EFI_NETWORK_INTERFACE_IDENTIFIER_PROTOCOL_GUID; @@ -56,14 +48,6 @@ static EFI_GUID efi_nii31_protocol_guid = { { 0xBC, 0x81, 0x76, 0x7F, 0x1F, 0x97, 0x7A, 0x89 } }; -/** EFI component name protocol GUID */ -static EFI_GUID efi_component_name2_protocol_guid - = EFI_COMPONENT_NAME2_PROTOCOL_GUID; - -/** EFI load file protocol GUID */ -static EFI_GUID efi_load_file_protocol_guid - = EFI_LOAD_FILE_PROTOCOL_GUID; - /** List of SNP devices */ static LIST_HEAD ( efi_snp_devices ); |