diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2019-05-13 22:58:53 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2019-05-13 22:58:53 +0000 |
commit | 24eb53b72b21223b6d168e91d9a4306f2fe4c37d (patch) | |
tree | 64e023887d8f4c64c9fe68d477b691a7fafc43bd /sys/dev | |
parent | 0215314fb9f62f0109926d50f4579463d7fd4484 (diff) |
print a newline for attach. from f holop
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/acpi/tpm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/acpi/tpm.c b/sys/dev/acpi/tpm.c index bc353068a0e..db308d7be68 100644 --- a/sys/dev/acpi/tpm.c +++ b/sys/dev/acpi/tpm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tpm.c,v 1.5 2019/04/13 19:19:36 deraadt Exp $ */ +/* $OpenBSD: tpm.c,v 1.6 2019/05/13 22:58:52 tedu Exp $ */ /* * Minimal interface to Trusted Platform Module chips implementing the @@ -268,6 +268,7 @@ tpm_attach(struct device *parent, struct device *self, void *aux) return; } + printf("\n"); sc->sc_enabled = 1; } |