Print out a "\n" after calling mc146818_attach().
Pointed out by Izumi Tsutsui.
This commit is contained in:
parent
8e82fb3308
commit
66e9a5e5c7
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: mcclock_isa.c,v 1.8 2006/03/28 16:37:44 gdamore Exp $ */
|
||||
/* $NetBSD: mcclock_isa.c,v 1.9 2006/09/07 04:59:30 simonb Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
|
||||
|
@ -29,7 +29,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcclock_isa.c,v 1.8 2006/03/28 16:37:44 gdamore Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: mcclock_isa.c,v 1.9 2006/09/07 04:59:30 simonb Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
|
@ -124,6 +124,7 @@ mcclock_isa_attach(struct device *parent, struct device *self, void *aux)
|
|||
MC_REGB_24HR);
|
||||
|
||||
mc146818_attach(sc);
|
||||
aprint_normal("\n");
|
||||
|
||||
todr_attach(&sc->sc_handle);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue