Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Dec 2002 10:42:06 -0800 (PST)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 22214 for review
Message-ID:  <200212121842.gBCIg61h058964@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=22214

Change 22214 by marcel@marcel_nfs on 2002/12/12 10:41:23

	Make siodivisor non-static. We like to use it in sio_cons.c

Affected files ...

.. //depot/projects/ia64/sys/dev/sio/sio.c#20 edit

Differences ...

==== //depot/projects/ia64/sys/dev/sio/sio.c#20 (text+ko) ====

@@ -167,7 +167,6 @@
 #endif
 
 static	timeout_t siobusycheck;
-static	u_int	siodivisor(u_long rclk, speed_t speed);
 static	timeout_t siodtrwakeup;
 static	void	comhardclose(struct com_s *com);
 static	void	sioinput(struct com_s *com);
@@ -1323,10 +1322,8 @@
 	splx(s);
 }
 
-static u_int
-siodivisor(rclk, speed)
-	u_long	rclk;
-	speed_t	speed;
+u_int
+siodivisor(u_long rclk, u_long speed)
 {
 	long	actual_speed;
 	u_int	divisor;

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200212121842.gBCIg61h058964>