summaryrefslogtreecommitdiffstats
path: root/sys/dev/cy
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2004-06-04 08:02:37 +0000
committerphk <phk@FreeBSD.org>2004-06-04 08:02:37 +0000
commit9bb2c2f2d29e403661d3a82df654de61b0356def (patch)
tree96f709f4adacd5078943626c84918a97005223bc /sys/dev/cy
parent41a29cfd2f86e0a0e54ffc45a69c5bfd031f1e2d (diff)
downloadFreeBSD-src-9bb2c2f2d29e403661d3a82df654de61b0356def.zip
FreeBSD-src-9bb2c2f2d29e403661d3a82df654de61b0356def.tar.gz
Make the remaining serial drivers call ttyioctl() rather than calling
the linedisc directly.
Diffstat (limited to 'sys/dev/cy')
-rw-r--r--sys/dev/cy/cy.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/sys/dev/cy/cy.c b/sys/dev/cy/cy.c
index 194b01c..c6e7220 100644
--- a/sys/dev/cy/cy.c
+++ b/sys/dev/cy/cy.c
@@ -1611,16 +1611,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();
switch (cmd) {
case TIOCSBRK:
#if 0
OpenPOWER on IntegriCloud