Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/isa Add missing printing-of-newlines in the attach r...



details:   https://anonhg.NetBSD.org/src/rev/cb136aaf2e30
branches:  trunk
changeset: 949751:cb136aaf2e30
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Sat Jan 16 00:43:03 2021 +0000

description:
Add missing printing-of-newlines in the attach routine.

diffstat:

 sys/dev/isa/tpm_isa.c |  7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diffs (28 lines):

diff -r 79ab69dd1e33 -r cb136aaf2e30 sys/dev/isa/tpm_isa.c
--- a/sys/dev/isa/tpm_isa.c     Sat Jan 16 00:09:28 2021 +0000
+++ b/sys/dev/isa/tpm_isa.c     Sat Jan 16 00:43:03 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: tpm_isa.c,v 1.7 2019/10/09 14:03:58 maxv Exp $ */
+/*     $NetBSD: tpm_isa.c,v 1.8 2021/01/16 00:43:03 thorpej Exp $      */
 
 /*
  * Copyright (c) 2019 The NetBSD Foundation, Inc.
@@ -48,7 +48,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tpm_isa.c,v 1.7 2019/10/09 14:03:58 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tpm_isa.c,v 1.8 2021/01/16 00:43:03 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -113,6 +113,9 @@
        base = (unsigned int)ia->ia_iomem[0].ir_addr;
        size = TPM_SPACE_SIZE;
 
+       aprint_normal("\n");
+       aprint_naive("\n");
+
        sc->sc_dev = self;
        sc->sc_ver = TPM_1_2;
        mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_NONE);



Home | Main Index | Thread Index | Old Index