Module Name:    src
Committed By:   riastradh
Date:           Mon Jan  4 18:26:08 UTC 2021

Modified Files:
        src/sys/dev/ic: tpm.c

Log Message:
dev/ic/tpm: Add missing line break in attach output.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/dev/ic/tpm.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/ic/tpm.c
diff -u src/sys/dev/ic/tpm.c:1.17 src/sys/dev/ic/tpm.c:1.18
--- src/sys/dev/ic/tpm.c:1.17	Mon Jan  4 18:22:19 2021
+++ src/sys/dev/ic/tpm.c	Mon Jan  4 18:26:08 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: tpm.c,v 1.17 2021/01/04 18:22:19 riastradh Exp $	*/
+/*	$NetBSD: tpm.c,v 1.18 2021/01/04 18:26:08 riastradh Exp $	*/
 
 /*
  * Copyright (c) 2019 The NetBSD Foundation, Inc.
@@ -48,7 +48,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tpm.c,v 1.17 2021/01/04 18:22:19 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tpm.c,v 1.18 2021/01/04 18:26:08 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/types.h>
@@ -330,6 +330,9 @@ tpm_tis12_init(struct tpm_softc *sc)
 {
 	int rv;
 
+	aprint_naive("\n");
+	aprint_normal("\n");
+
 	sc->sc_caps = bus_space_read_4(sc->sc_bt, sc->sc_bh,
 	    TPM_INTF_CAPABILITY);
 	sc->sc_devid = bus_space_read_4(sc->sc_bt, sc->sc_bh, TPM_ID);

Reply via email to