Module Name: src
Committed By: macallan
Date: Fri May 21 21:21:01 UTC 2021
Modified Files:
src/sys/dev/i2c: m41st84.c
Log Message:
add \n to attach output
To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/sys/dev/i2c/m41st84.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/i2c/m41st84.c
diff -u src/sys/dev/i2c/m41st84.c:1.31 src/sys/dev/i2c/m41st84.c:1.32
--- src/sys/dev/i2c/m41st84.c:1.31 Wed Jan 27 02:29:48 2021
+++ src/sys/dev/i2c/m41st84.c Fri May 21 21:21:01 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: m41st84.c,v 1.31 2021/01/27 02:29:48 thorpej Exp $ */
+/* $NetBSD: m41st84.c,v 1.32 2021/05/21 21:21:01 macallan Exp $ */
/*
* Copyright (c) 2003 Wasabi Systems, Inc.
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: m41st84.c,v 1.31 2021/01/27 02:29:48 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: m41st84.c,v 1.32 2021/05/21 21:21:01 macallan Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -194,7 +194,7 @@ strtc_attach(device_t parent, device_t s
aprint_naive(": Real-time Clock%s\n",
sm->sm_nvram_size ? "/NVRAM" : "");
- aprint_normal(": M41T%d Real-time Clock%s", sm->sm_model,
+ aprint_normal(": M41T%d Real-time Clock%s\n", sm->sm_model,
sm->sm_nvram_size ? "/NVRAM" : "");
sc->sc_tag = ia->ia_tag;