GC unused routines.

Sponsored by: Netflix
This commit is contained in:
imp 2018-03-12 21:40:05 +00:00
parent 9ee90910b8
commit f6d1b21fe8

View File

@ -35,35 +35,6 @@ __FBSDID("$FreeBSD$");
#include <stdbool.h>
#include "bootstrap.h"
/*
* Simple wrappers to the underlying UEFI functions.
* See http://wiki.phoenix.com/wiki/index.php/EFI_RUNTIME_SERVICES
* for details.
*/
EFI_STATUS
efi_get_next_variable_name(UINTN *variable_name_size, CHAR16 *variable_name,
EFI_GUID *vendor_guid)
{
return (RS->GetNextVariableName(variable_name_size, variable_name,
vendor_guid));
}
EFI_STATUS
efi_get_variable(CHAR16 *variable_name, EFI_GUID *vendor_guid,
UINT32 *attributes, UINTN *data_size, void *data)
{
return (RS->GetVariable(variable_name, vendor_guid, attributes,
data_size, data));
}
EFI_STATUS
efi_set_variable(CHAR16 *variable_name, EFI_GUID *vendor_guid,
UINT32 attributes, UINTN data_size, void *data)
{
return (RS->SetVariable(variable_name, vendor_guid, attributes,
data_size, data));
}
void
efi_init_environment(void)
{