Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/x86/x86 Update signature in prototype of efi_relva(...



details:   https://anonhg.NetBSD.org/src/rev/1e29784049a7
branches:  trunk
changeset: 445870:1e29784049a7
user:      kre <kre%NetBSD.org@localhost>
date:      Thu Nov 15 11:20:59 2018 +0000

description:
Update signature in prototype of efi_relva() to match
change in definition in previous, and explicitly cast
NULL to paddr_t to avoid gcc noise.

diffstat:

 sys/arch/x86/x86/efi.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (35 lines):

diff -r b16dd15d3046 -r 1e29784049a7 sys/arch/x86/x86/efi.c
--- a/sys/arch/x86/x86/efi.c    Thu Nov 15 11:18:33 2018 +0000
+++ b/sys/arch/x86/x86/efi.c    Thu Nov 15 11:20:59 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: efi.c,v 1.16 2018/11/15 04:59:02 riastradh Exp $       */
+/*     $NetBSD: efi.c,v 1.17 2018/11/15 11:20:59 kre Exp $     */
 
 /*-
  * Copyright (c) 2016 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: efi.c,v 1.16 2018/11/15 04:59:02 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: efi.c,v 1.17 2018/11/15 11:20:59 kre Exp $");
 
 #include <sys/kmem.h>
 #include <sys/param.h>
@@ -48,14 +48,14 @@
 const struct uuid EFI_UUID_SMBIOS3 = EFI_TABLE_SMBIOS3;
 
 static vaddr_t         efi_getva(paddr_t);
-static void    efi_relva(vaddr_t);
+static void    efi_relva(paddr_t, vaddr_t);
 struct efi_cfgtbl *efi_getcfgtblhead(void);
 void           efi_aprintcfgtbl(void);
 void           efi_aprintuuid(const struct uuid *);
 bool           efi_uuideq(const struct uuid *, const struct uuid *);
 
 static bool efi_is32x64 = false;
-static paddr_t efi_systbl_pa = NULL;
+static paddr_t efi_systbl_pa = (paddr_t)NULL;
 static struct efi_systbl *efi_systbl_va = NULL;
 static struct efi_cfgtbl *efi_cfgtblhead_va = NULL;
 static struct efi_e820memmap {



Home | Main Index | Thread Index | Old Index