Module Name: src
Committed By: matt
Date: Mon Aug 8 17:45:13 UTC 2011
Modified Files:
src/sys/arch/hpcmips/tx: tx39clock.c
Log Message:
Global inlines are not allowed.
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/arch/hpcmips/tx/tx39clock.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/hpcmips/tx/tx39clock.c
diff -u src/sys/arch/hpcmips/tx/tx39clock.c:1.25 src/sys/arch/hpcmips/tx/tx39clock.c:1.26
--- src/sys/arch/hpcmips/tx/tx39clock.c:1.25 Wed Mar 16 14:43:37 2011
+++ src/sys/arch/hpcmips/tx/tx39clock.c Mon Aug 8 17:45:13 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: tx39clock.c,v 1.25 2011/03/16 14:43:37 tsutsui Exp $ */
+/* $NetBSD: tx39clock.c,v 1.26 2011/08/08 17:45:13 matt Exp $ */
/*-
* Copyright (c) 1999-2002 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tx39clock.c,v 1.25 2011/03/16 14:43:37 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tx39clock.c,v 1.26 2011/08/08 17:45:13 matt Exp $");
#include "opt_tx39clock_debug.h"
@@ -92,8 +92,8 @@
void __tx39timer_rtcfreeze(tx_chipset_tag_t);
void __tx39timer_rtcreset(tx_chipset_tag_t);
-inline void __tx39timer_rtcget(struct txtime *);
-inline time_t __tx39timer_rtc2sec(struct txtime *);
+void __tx39timer_rtcget(struct txtime *);
+time_t __tx39timer_rtc2sec(struct txtime *);
uint32_t tx39_timecount(struct timecounter *);
CFATTACH_DECL(tx39clock, sizeof(struct tx39clock_softc),
@@ -190,7 +190,7 @@
tx_conf_write(tc, TX39_TIMERCONTROL_REG, reg);
}
-inline void
+void
__tx39timer_rtcget(struct txtime *t)
{
tx_chipset_tag_t tc;