From 931fe2577d42b7779bf2e0c4d70f871f2d7fd39e Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Thu, 14 Nov 2013 13:09:37 +0100 Subject: i386/i386at/com.c: remove register qualifiers * i386/i386at/com.c: Remove register qualifiers. --- i386/i386at/com.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'i386/i386at') diff --git a/i386/i386at/com.c b/i386/i386at/com.c index 5fb3ec0..e0549ea 100644 --- a/i386/i386at/com.c +++ b/i386/i386at/com.c @@ -499,7 +499,7 @@ void comintr(unit) int unit; { - register struct tty *tp = &com_tty[unit]; + struct tty *tp = &com_tty[unit]; u_short addr = cominfo[unit]->address; static char comoverrun = 0; char c, line, intr_id; @@ -751,14 +751,14 @@ commodem_intr( */ int commctl( - register struct tty *tp, - int bits, - int how) + struct tty *tp, + int bits, + int how) { spl_t s; int unit; vm_offset_t dev_addr; - register int b = 0; /* Suppress gcc warning */ + int b = 0; /* Suppress gcc warning */ unit = minor(tp->t_dev); @@ -818,7 +818,7 @@ commctl( void comstop(tp, flags) -register struct tty *tp; +struct tty *tp; int flags; { if ((tp->t_state & TS_BUSY) && (tp->t_state & TS_TTSTOP) == 0) -- cgit v1.2.3