Source-Changes-HG archive

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

[src/netbsd-8]: src/sys/arch/x86/x86 Pull up following revision(s) (requested...



details:   https://anonhg.NetBSD.org/src/rev/f3970261349b
branches:  netbsd-8
changeset: 373636:f3970261349b
user:      martin <martin%NetBSD.org@localhost>
date:      Wed Feb 22 19:24:59 2023 +0000

description:
Pull up following revision(s) (requested by riastradh in ticket #1799):

        sys/arch/x86/x86/efi_machdep.c: revision 1.3
        (applied to sys/arch/x86/x86/efi.c)

x86/efi: Print uuids in slightly more standard notation.

Anyone need a spare hyphen?  We had a few extras, apparently.

diffstat:

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

diffs (27 lines):

diff -r 7685e84613fe -r f3970261349b sys/arch/x86/x86/efi.c
--- a/sys/arch/x86/x86/efi.c    Wed Feb 22 18:55:06 2023 +0000
+++ b/sys/arch/x86/x86/efi.c    Wed Feb 22 19:24:59 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: efi.c,v 1.11.6.1 2018/06/07 15:52:54 martin Exp $      */
+/*     $NetBSD: efi.c,v 1.11.6.2 2023/02/22 19:24:59 martin Exp $      */
 
 /*-
  * Copyright (c) 2016 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: efi.c,v 1.11.6.1 2018/06/07 15:52:54 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: efi.c,v 1.11.6.2 2023/02/22 19:24:59 martin Exp $");
 
 #include <sys/kmem.h>
 #include <sys/param.h>
@@ -122,7 +122,7 @@
        aprint_debug("-%04" PRIx16 "", uuid->time_mid);
        aprint_debug("-%04" PRIx16 "", uuid->time_hi_and_version);
        aprint_debug("-%02" PRIx8 "", uuid->clock_seq_hi_and_reserved);
-       aprint_debug("-%02" PRIx8 "", uuid->clock_seq_low);
+       aprint_debug("%02" PRIx8 "", uuid->clock_seq_low);
        aprint_debug("-");
        for (i = 0; i < _UUID_NODE_LEN; i++) {
                aprint_debug("%02" PRIx8 "", uuid->node[i]);



Home | Main Index | Thread Index | Old Index