From 587059915b8963185318e529e775e743f865c6ba Mon Sep 17 00:00:00 2001 From: kardel Date: Mon, 24 Jul 2006 16:37:24 +0000 Subject: [PATCH] get tickle_tc() prototyped unconditionally --- sys/arch/amd64/isa/clock.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/amd64/isa/clock.c b/sys/arch/amd64/isa/clock.c index c97bc7ea542d..dbbd3c21f028 100644 --- a/sys/arch/amd64/isa/clock.c +++ b/sys/arch/amd64/isa/clock.c @@ -1,4 +1,4 @@ -/* $NetBSD: clock.c,v 1.9 2006/06/07 22:37:14 kardel Exp $ */ +/* $NetBSD: clock.c,v 1.10 2006/07/24 16:37:24 kardel Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -121,7 +121,7 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include -__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.9 2006/06/07 22:37:14 kardel Exp $"); +__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.10 2006/07/24 16:37:24 kardel Exp $"); /* #define CLOCKDEBUG */ /* #define CLOCK_PARANOIA */ @@ -171,7 +171,6 @@ int clock_debug = 0; int sysbeepmatch __P((struct device *, struct cfdata *, void *)); void sysbeepattach __P((struct device *, struct device *, void *)); -static void tickle_tc(void); CFATTACH_DECL(sysbeep, sizeof(struct device), sysbeepmatch, sysbeepattach, NULL, NULL); @@ -189,6 +188,7 @@ int rtcget __P((mc_todregs *)); void rtcput __P((mc_todregs *)); static inline int gettick_broken_latch __P((void)); +static void tickle_tc(void); static volatile uint32_t i8254_lastcount; static volatile uint32_t i8254_offset;