Module Name: src
Committed By: thorpej
Date: Sat Jan 16 00:43:04 UTC 2021
Modified Files:
src/sys/dev/isa: tpm_isa.c
Log Message:
Add missing printing-of-newlines in the attach routine.
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/isa/tpm_isa.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/isa/tpm_isa.c
diff -u src/sys/dev/isa/tpm_isa.c:1.7 src/sys/dev/isa/tpm_isa.c:1.8
--- src/sys/dev/isa/tpm_isa.c:1.7 Wed Oct 9 14:03:58 2019
+++ src/sys/dev/isa/tpm_isa.c Sat Jan 16 00:43:03 2021
@@ -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 @@ tpm_isa_attach(device_t parent, device_t
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);