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 Add missing \n (I triggered the systbl mess...



details:   https://anonhg.NetBSD.org/src/rev/c802da0c28be
branches:  trunk
changeset: 345833:c802da0c28be
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Fri Jun 10 07:50:15 2016 +0000

description:
Add missing \n (I triggered the systbl message on a qemu virtual machine!)

diffstat:

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

diffs (32 lines):

diff -r 1f49c309ef09 -r c802da0c28be sys/arch/x86/x86/efi.c
--- a/sys/arch/x86/x86/efi.c    Fri Jun 10 06:30:58 2016 +0000
+++ b/sys/arch/x86/x86/efi.c    Fri Jun 10 07:50:15 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: efi.c,v 1.2 2016/01/29 02:40:22 christos Exp $ */
+/*     $NetBSD: efi.c,v 1.3 2016/06/10 07:50:15 pgoyette Exp $ */
 /*-
  * Copyright (c) 2016 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -25,7 +25,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: efi.c,v 1.2 2016/01/29 02:40:22 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: efi.c,v 1.3 2016/06/10 07:50:15 pgoyette Exp $");
 #include <sys/kmem.h>
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -275,11 +275,11 @@
 efi_probe(void)
 {
        if (efi_getsystbl() == 0) {
-               aprint_debug("efi: missing or invalid systbl");
+               aprint_debug("efi: missing or invalid systbl\n");
                return false;
        }
        if (efi_getcfgtblhead() == 0) {
-               aprint_debug("efi: missing or invalid cfgtbl");
+               aprint_debug("efi: missing or invalid cfgtbl\n");
                efi_relva((vaddr_t) efi_systbl_va);
                return false;
        }



Home | Main Index | Thread Index | Old Index