diff options
author | bde <bde@FreeBSD.org> | 2002-03-23 16:01:49 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2002-03-23 16:01:49 +0000 |
commit | 8e5d7bb37a4e4d8ae1e1fefe6ad47b7c8865400d (patch) | |
tree | bd7beb118d2c1429655390b451bdab3ec851ab01 /sys/dev/rc/rc.c | |
parent | 82395b7295123f4d9a786ebd89495ef101103a61 (diff) | |
download | FreeBSD-src-8e5d7bb37a4e4d8ae1e1fefe6ad47b7c8865400d.zip FreeBSD-src-8e5d7bb37a4e4d8ae1e1fefe6ad47b7c8865400d.tar.gz |
Fixed some style bugs in the removal of __P(()). The main ones were
not removing tabs before "__P((", and not outdenting continuation lines
to preserve non-KNF lining up of code with parentheses. Switch to KNF
formatting and/or rewrap the whole prototype in some cases.
Diffstat (limited to 'sys/dev/rc/rc.c')
-rw-r--r-- | sys/dev/rc/rc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/rc/rc.c b/sys/dev/rc/rc.c index 63b608f..43f77f9 100644 --- a/sys/dev/rc/rc.c +++ b/sys/dev/rc/rc.c @@ -182,14 +182,14 @@ static int rc_modctl(struct rc_chans *, int, int); static void rc_start(struct tty *); static void rc_stop(struct tty *, int rw); static int rc_param(struct tty *, struct termios *); -static void rcpoll (void *); +static void rcpoll(void *); static void rc_reinit(struct rc_softc *); #ifdef RCDEBUG static void printrcflags(); #endif static timeout_t rc_dtrwakeup; static timeout_t rc_wakeup; -static void disc_optim (struct tty *tp, struct termios *t, struct rc_chans *); +static void disc_optim(struct tty *tp, struct termios *t, struct rc_chans *); static void rc_wait0(int nec, int unit, int chan, int line); /**********************************************/ |