From: Sascha Hauer <[email protected]> efi: guid: declare extern efi_smbios3_guid in header
We added the definition, but omitted the extern definition, so it can be used. Signed-off-by: Ahmad Fatoum <[email protected]> --- include/efi/guid.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/efi/guid.h b/include/efi/guid.h index cc9449fd8bb6..f6018b5f7ef8 100644 --- a/include/efi/guid.h +++ b/include/efi/guid.h @@ -41,6 +41,7 @@ extern const efi_guid_t efi_load_file2_protocol_guid; extern const efi_guid_t efi_device_path_utilities_protocol_guid; extern const efi_guid_t efi_linux_initrd_media_guid; extern const efi_guid_t efi_smbios_guid; +extern const efi_guid_t efi_smbios3_guid; extern const efi_guid_t efi_gop_guid; extern const efi_guid_t efi_snp_guid; extern const efi_guid_t efi_text_input_ex_guid; -- 2.47.3
