From 500e41bd7127ee03db75cd2a3704b8025c24e345 Mon Sep 17 00:00:00 2001 From: phk Date: Sat, 8 May 1999 06:40:31 +0000 Subject: I got tired of seeing all the cdevsw[major(foo)] all over the place. Made a new (inline) function devsw(dev_t dev) and substituted it. Changed to the BDEV variant to this format as well: bdevsw(dev_t dev) DEVFS will eventually benefit from this change too. --- sys/kern/tty_pty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/kern/tty_pty.c') diff --git a/sys/kern/tty_pty.c b/sys/kern/tty_pty.c index d8b4893..c7c0313 100644 --- a/sys/kern/tty_pty.c +++ b/sys/kern/tty_pty.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tty_pty.c 8.4 (Berkeley) 2/20/95 - * $Id: tty_pty.c,v 1.55 1999/01/30 12:17:37 phk Exp $ + * $Id: tty_pty.c,v 1.56 1999/04/27 11:16:19 phk Exp $ */ /* @@ -675,7 +675,7 @@ ptyioctl(dev, cmd, data, flag, p) } return(0); } else - if (cdevsw[major(dev)]->d_open == ptcopen) + if (devsw(dev)->d_open == ptcopen) switch (cmd) { case TIOCGPGRP: -- cgit v1.1