aboutsummaryrefslogtreecommitdiff
path: root/sys/pc98/cbus/sio.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2004-06-04 08:02:37 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2004-06-04 08:02:37 +0000
commite451f9b758040542701d72994b457233fe2529a7 (patch)
tree96f709f4adacd5078943626c84918a97005223bc /sys/pc98/cbus/sio.c
parentd1afdc6644ad956e9bbfd4e679bf09dc5461bbcd (diff)
downloadsrc-e451f9b758040542701d72994b457233fe2529a7.tar.gz
src-e451f9b758040542701d72994b457233fe2529a7.zip
Make the remaining serial drivers call ttyioctl() rather than calling
the linedisc directly.
Notes
Notes: svn path=/head/; revision=130057
Diffstat (limited to 'sys/pc98/cbus/sio.c')
-rw-r--r--sys/pc98/cbus/sio.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/sys/pc98/cbus/sio.c b/sys/pc98/cbus/sio.c
index 68045ab942db..ba1a15f29aff 100644
--- a/sys/pc98/cbus/sio.c
+++ b/sys/pc98/cbus/sio.c
@@ -3021,16 +3021,11 @@ sioioctl(dev, cmd, data, flag, td)
if (lt->c_ospeed != 0)
dt->c_ospeed = tp->t_ospeed;
}
- error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag, td);
- if (error != ENOIOCTL)
- return (error);
- s = spltty();
- error = ttioctl(tp, cmd, data, flag);
+ error = ttyioctl(dev, cmd, data, flag, td);
disc_optim(tp, &tp->t_termios, com);
- if (error != ENOIOCTL) {
- splx(s);
+ if (error != ENOTTY)
return (error);
- }
+ s = spltty();
#ifdef PC98
if (IS_8251(com->pc98_if_type)) {
switch (cmd) {