Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 May 2017 06:29:20 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r318626 - stable/10/sys/boot/efi/boot1
Message-ID:  <201705220629.v4M6TK5O043449@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Mon May 22 06:29:20 2017
New Revision: 318626
URL: https://svnweb.freebsd.org/changeset/base/318626

Log:
  MFC r316103:
  
  Remove redundant declarations
  
  They're already defined in libstand.h

Modified:
  stable/10/sys/boot/efi/boot1/boot1.c
  stable/10/sys/boot/efi/boot1/boot_module.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/boot/efi/boot1/boot1.c
==============================================================================
--- stable/10/sys/boot/efi/boot1/boot1.c	Mon May 22 06:26:22 2017	(r318625)
+++ stable/10/sys/boot/efi/boot1/boot1.c	Mon May 22 06:29:20 2017	(r318626)
@@ -47,7 +47,6 @@ static const boot_module_t *boot_modules
 /* The initial number of handles used to query EFI for partitions. */
 #define NUM_HANDLES_INIT	24
 
-void putchar(int c);
 EFI_STATUS efi_main(EFI_HANDLE Ximage, EFI_SYSTEM_TABLE* Xsystab);
 
 EFI_SYSTEM_TABLE *systab;

Modified: stable/10/sys/boot/efi/boot1/boot_module.h
==============================================================================
--- stable/10/sys/boot/efi/boot1/boot_module.h	Mon May 22 06:26:22 2017	(r318625)
+++ stable/10/sys/boot/efi/boot1/boot_module.h	Mon May 22 06:29:20 2017	(r318626)
@@ -105,8 +105,6 @@ extern const boot_module_t zfs_module;
 
 /* Functions available to modules. */
 extern void add_device(dev_info_t **devinfop, dev_info_t *devinfo);
-extern void panic(const char *fmt, ...) __dead2;
-extern int printf(const char *fmt, ...);
 extern int vsnprintf(char *str, size_t sz, const char *fmt, va_list ap);
 
 extern EFI_SYSTEM_TABLE *systab;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705220629.v4M6TK5O043449>