aboutsummaryrefslogtreecommitdiff
path: root/sys/pc98/cbus/sio.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2004-06-11 11:16:26 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2004-06-11 11:16:26 +0000
commit1930e303cfa1b9fe2c50fdad0d1ba6143311a53c (patch)
treeeeeded1f490a2da21f50d2e6f81efd45f8326e90 /sys/pc98/cbus/sio.c
parentf89485e2b1417088084fabcc31952be90ae25378 (diff)
downloadsrc-1930e303cfa1b9fe2c50fdad0d1ba6143311a53c.tar.gz
src-1930e303cfa1b9fe2c50fdad0d1ba6143311a53c.zip
Deorbit COMPAT_SUNOS.
We inherited this from the sparc32 port of BSD4.4-Lite1. We have neither a sparc32 port nor a SunOS4.x compatibility desire these days.
Notes
Notes: svn path=/head/; revision=130344
Diffstat (limited to 'sys/pc98/cbus/sio.c')
-rw-r--r--sys/pc98/cbus/sio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/pc98/cbus/sio.c b/sys/pc98/cbus/sio.c
index 12c824371a20..708c4a7534ee 100644
--- a/sys/pc98/cbus/sio.c
+++ b/sys/pc98/cbus/sio.c
@@ -2945,7 +2945,7 @@ sioioctl(dev, cmd, data, flag, td)
int mynor;
int s;
struct tty *tp;
-#if defined(COMPAT_43) || defined(COMPAT_SUNOS)
+#if defined(COMPAT_43)
u_long oldcmd;
struct termios term;
#endif
@@ -2988,7 +2988,7 @@ sioioctl(dev, cmd, data, flag, td)
}
}
tp = com->tp;
-#if defined(COMPAT_43) || defined(COMPAT_SUNOS)
+#if defined(COMPAT_43)
term = tp->t_termios;
oldcmd = cmd;
error = ttsetcompat(tp, &cmd, data, &term);