summaryrefslogtreecommitdiff
path: root/i386/i386at/com.c
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-11-14 13:09:37 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-11-15 02:18:49 +0100
commit931fe2577d42b7779bf2e0c4d70f871f2d7fd39e (patch)
tree61e968cfe03cc688cfad272be8bef29bdbf160ae /i386/i386at/com.c
parentc0039c01ace499c8e51fbd417f0a8df5db5d89fd (diff)
i386/i386at/com.c: remove register qualifiers
* i386/i386at/com.c: Remove register qualifiers.
Diffstat (limited to 'i386/i386at/com.c')
-rw-r--r--i386/i386at/com.c12
1 files changed, 6 insertions, 6 deletions
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)