Module Name: src
Committed By: tsutsui
Date: Sun Mar 13 09:01:04 UTC 2016
Modified Files:
src/sys/dev/scsipi: atapiconf.c
Log Message:
Sync with scsiconf.c. (use aprint_normal(9) for "not configured")
To generate a diff of this commit:
cvs rdiff -u -r1.87 -r1.88 src/sys/dev/scsipi/atapiconf.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/scsipi/atapiconf.c
diff -u src/sys/dev/scsipi/atapiconf.c:1.87 src/sys/dev/scsipi/atapiconf.c:1.88
--- src/sys/dev/scsipi/atapiconf.c:1.87 Wed Mar 5 08:45:13 2014
+++ src/sys/dev/scsipi/atapiconf.c Sun Mar 13 09:01:04 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: atapiconf.c,v 1.87 2014/03/05 08:45:13 skrll Exp $ */
+/* $NetBSD: atapiconf.c,v 1.88 2016/03/13 09:01:04 tsutsui Exp $ */
/*
* Copyright (c) 1996, 2001 Manuel Bouyer. All rights reserved.
@@ -25,7 +25,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: atapiconf.c,v 1.87 2014/03/05 08:45:13 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: atapiconf.c,v 1.88 2016/03/13 09:01:04 tsutsui Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -288,7 +288,7 @@ atapi_probe_device(struct atapibus_softc
atapibusprint);
} else {
atapibusprint(sa, device_xname(sc->sc_dev));
- printf(" not configured\n");
+ aprint_normal(" not configured\n");
free(periph, M_DEVBUF);
return NULL;
}