summaryrefslogtreecommitdiff
path: root/sys/dev/gpio
diff options
context:
space:
mode:
authormsaitoh <msaitoh@NetBSD.org>2014-05-23 13:57:04 +0000
committermsaitoh <msaitoh@NetBSD.org>2014-05-23 13:57:04 +0000
commitcf8785b697924837a3a4e5bc6bf050bb2fbbcf90 (patch)
tree21152ca17bdd7b0876ea10a879d5bc44e8d3065a /sys/dev/gpio
parenta7272560f98ff6e28b24abba474da095870a351f (diff)
Add aprint_naive("\n") for boot -q
Diffstat (limited to 'sys/dev/gpio')
-rw-r--r--sys/dev/gpio/gpio.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/gpio/gpio.c b/sys/dev/gpio/gpio.c
index bf6dd8ea7d2..11525e3e3fa 100644
--- a/sys/dev/gpio/gpio.c
+++ b/sys/dev/gpio/gpio.c
@@ -1,4 +1,4 @@
-/* $NetBSD: gpio.c,v 1.54 2014/04/04 14:47:26 christos Exp $ */
+/* $NetBSD: gpio.c,v 1.55 2014/05/23 13:57:04 msaitoh Exp $ */
/* $OpenBSD: gpio.c,v 1.6 2006/01/14 12:33:49 grange Exp $ */
/*
@@ -19,7 +19,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: gpio.c,v 1.54 2014/04/04 14:47:26 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: gpio.c,v 1.55 2014/05/23 13:57:04 msaitoh Exp $");
/*
* General Purpose Input/Output framework.
@@ -208,6 +208,7 @@ gpio_attach(device_t parent, device_t self, void *aux)
sc->sc_npins = gba->gba_npins;
aprint_normal(": %d pins\n", sc->sc_npins);
+ aprint_naive("\n");
if (!pmf_device_register(self, NULL, gpio_resume))
aprint_error_dev(self, "couldn't establish power handler\n");