Fix think'o in last. Pointed out by Izumi Tsutsui.
This commit is contained in:
parent
b161c7f8d3
commit
472c98cf7a
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: becc_timer.c,v 1.4 2003/07/26 05:51:11 thorpej Exp $ */
|
||||
/* $NetBSD: becc_timer.c,v 1.5 2003/07/27 04:52:28 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001, 2002 Wasabi Systems, Inc.
|
||||
|
@ -40,7 +40,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: becc_timer.c,v 1.4 2003/07/26 05:51:11 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: becc_timer.c,v 1.5 2003/07/27 04:52:28 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -279,6 +279,7 @@ todr_attach(todr_chip_handle_t todr)
|
|||
|
||||
if (todr_handle)
|
||||
panic("todr_attach: rtc already configured");
|
||||
todr_handle = todr;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: i80321_timer.c,v 1.6 2003/07/26 05:51:11 thorpej Exp $ */
|
||||
/* $NetBSD: i80321_timer.c,v 1.7 2003/07/27 04:52:28 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001, 2002 Wasabi Systems, Inc.
|
||||
|
@ -40,7 +40,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: i80321_timer.c,v 1.6 2003/07/26 05:51:11 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: i80321_timer.c,v 1.7 2003/07/27 04:52:28 thorpej Exp $");
|
||||
|
||||
#include "opt_perfctrs.h"
|
||||
|
||||
|
@ -330,6 +330,7 @@ todr_attach(todr_chip_handle_t todr)
|
|||
|
||||
if (todr_handle)
|
||||
panic("todr_attach: rtc already configured");
|
||||
todr_handle = todr;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ixp425_timer.c,v 1.2 2003/07/26 05:51:11 thorpej Exp $ */
|
||||
/* $NetBSD: ixp425_timer.c,v 1.3 2003/07/27 04:52:28 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2003
|
||||
|
@ -34,7 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ixp425_timer.c,v 1.2 2003/07/26 05:51:11 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ixp425_timer.c,v 1.3 2003/07/27 04:52:28 thorpej Exp $");
|
||||
|
||||
#include "opt_perfctrs.h"
|
||||
|
||||
|
@ -297,6 +297,7 @@ todr_attach(todr_chip_handle_t todr)
|
|||
|
||||
if (todr_handle)
|
||||
panic("todr_attach: rtc already configured");
|
||||
todr_handle = todr;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: iq80310_timer.c,v 1.13 2003/07/26 05:55:03 thorpej Exp $ */
|
||||
/* $NetBSD: iq80310_timer.c,v 1.14 2003/07/27 04:53:09 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2001, 2002 Wasabi Systems, Inc.
|
||||
|
@ -47,7 +47,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: iq80310_timer.c,v 1.13 2003/07/26 05:55:03 thorpej Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: iq80310_timer.c,v 1.14 2003/07/27 04:53:09 thorpej Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -332,6 +332,7 @@ todr_attach(todr_chip_handle_t todr)
|
|||
|
||||
if (todr_handle)
|
||||
panic("todr_attach: rtc already configured");
|
||||
todr_handle = todr;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue