From ef17fed2cc72e5d782f3687c4b4d854939739c41 Mon Sep 17 00:00:00 2001 From: phk Date: Wed, 16 Oct 2002 10:16:17 +0000 Subject: Be consistent about funtions being static. Spotte by: FlexeLint. --- sys/dev/rc/rc.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sys/dev/rc') diff --git a/sys/dev/rc/rc.c b/sys/dev/rc/rc.c index de6ea07..c171949 100644 --- a/sys/dev/rc/rc.c +++ b/sys/dev/rc/rc.c @@ -562,7 +562,8 @@ out: } /* Handle delayed events. */ -void rcpoll(void *arg) +static void +rcpoll(void *arg) { register struct rc_chans *rc; register struct rc_softc *rcb; @@ -1218,7 +1219,8 @@ int bits, cmd; } /* Test the board. */ -int rc_test(nec, unit) +static int +rc_test(nec, unit) register int nec; int unit; { -- cgit v1.1