Author: imp
Date: Mon Mar 12 21:40:05 2018
New Revision: 330811
URL: https://svnweb.freebsd.org/changeset/base/330811

Log:
  GC unused routines.
  
  Sponsored by: Netflix

Modified:
  head/stand/efi/libefi/env.c

Modified: head/stand/efi/libefi/env.c
==============================================================================
--- head/stand/efi/libefi/env.c Mon Mar 12 21:39:59 2018        (r330810)
+++ head/stand/efi/libefi/env.c Mon Mar 12 21:40:05 2018        (r330811)
@@ -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)
 {
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to