Add missing newlines...
This commit is contained in:
parent
2fb8c49793
commit
c61278b1af
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: acpi_ec.c,v 1.73 2014/07/06 15:35:42 riastradh Exp $ */
|
||||
/* $NetBSD: acpi_ec.c,v 1.74 2014/12/08 16:16:45 msaitoh Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2007 Joerg Sonnenberger <joerg@NetBSD.org>.
|
||||
|
@ -59,7 +59,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: acpi_ec.c,v 1.73 2014/07/06 15:35:42 riastradh Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: acpi_ec.c,v 1.74 2014/12/08 16:16:45 msaitoh Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/callout.h>
|
||||
|
@ -267,6 +267,8 @@ acpiec_attach(device_t parent, device_t self, void *aux)
|
|||
aprint_normal(": using %s\n", device_xname(ec_singleton));
|
||||
goto fail0;
|
||||
}
|
||||
aprint_naive("\n");
|
||||
aprint_normal("\n");
|
||||
|
||||
if (!acpiec_parse_gpe_package(self, aa->aa_node->ad_handle,
|
||||
&gpe_handle, &gpebit))
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pcppi.c,v 1.42 2012/04/06 20:33:20 plunky Exp $ */
|
||||
/* $NetBSD: pcppi.c,v 1.43 2014/12/08 16:16:45 msaitoh Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996 Carnegie-Mellon University.
|
||||
|
@ -28,7 +28,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: pcppi.c,v 1.42 2012/04/06 20:33:20 plunky Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: pcppi.c,v 1.43 2014/12/08 16:16:45 msaitoh Exp $");
|
||||
|
||||
#include "attimer.h"
|
||||
|
||||
|
@ -167,6 +167,7 @@ pcppi_isa_attach(device_t parent, device_t self, void *aux)
|
|||
if (bus_space_map(iot, IO_PPI, sc->sc_size, 0, &sc->sc_ppi_ioh))
|
||||
panic("pcppi_attach: couldn't map");
|
||||
|
||||
aprint_naive("\n");
|
||||
aprint_normal("\n");
|
||||
pcppi_attach(sc);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue