diff options
| author | Bruce Evans <bde@FreeBSD.org> | 2002-03-23 12:13:34 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 2002-03-23 12:13:34 +0000 |
| commit | 359052dbcc2170d3090335a9a99f0d84c79c7199 (patch) | |
| tree | 0929a636bdbc681dd28614a5913eec0dc8d95d33 /sys/dev/sio/sio.c | |
| parent | 763df836228bda0b48e71ea5bef063dcaf4be98d (diff) | |
Notes
Diffstat (limited to 'sys/dev/sio/sio.c')
| -rw-r--r-- | sys/dev/sio/sio.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index b2e75d9565ad..fa2d6985457d 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -271,26 +271,26 @@ struct com_s { }; #ifdef COM_ESP -static int espattach (struct com_s *com, Port_t esp_port); +static int espattach(struct com_s *com, Port_t esp_port); #endif static timeout_t siobusycheck; -static u_int siodivisor (u_long rclk, speed_t speed); +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); -static void siointr1 (struct com_s *com); -static void siointr (void *arg); -static int commctl (struct com_s *com, int bits, int how); -static int comparam (struct tty *tp, struct termios *t); -static void siopoll (void *); -static void siosettimeout (void); -static int siosetwater (struct com_s *com, speed_t speed); -static void comstart (struct tty *tp); -static void comstop (struct tty *tp, int rw); +static void comhardclose(struct com_s *com); +static void sioinput(struct com_s *com); +static void siointr1(struct com_s *com); +static void siointr(void *arg); +static int commctl(struct com_s *com, int bits, int how); +static int comparam(struct tty *tp, struct termios *t); +static void siopoll(void *); +static void siosettimeout(void); +static int siosetwater(struct com_s *com, speed_t speed); +static void comstart(struct tty *tp); +static void comstop(struct tty *tp, int rw); static timeout_t comwakeup; -static void disc_optim (struct tty *tp, struct termios *t, - struct com_s *com); +static void disc_optim(struct tty *tp, struct termios *t, + struct com_s *com); char sio_driver_name[] = "sio"; static struct mtx sio_lock; @@ -2705,9 +2705,9 @@ struct siocnstate { #ifndef __alpha__ static speed_t siocngetspeed(Port_t, u_long rclk); #endif -static void siocnclose (struct siocnstate *sp, Port_t iobase); -static void siocnopen (struct siocnstate *sp, Port_t iobase, int speed); -static void siocntxwait (Port_t iobase); +static void siocnclose(struct siocnstate *sp, Port_t iobase); +static void siocnopen(struct siocnstate *sp, Port_t iobase, int speed); +static void siocntxwait(Port_t iobase); #ifdef __alpha__ int siocnattach(int port, int speed); |
