It is probably too early to drop the dev_t argument for the ttyld_open()

function.
This commit is contained in:
Poul-Henning Kamp 2004-06-04 16:01:12 +00:00
parent a64d4b2609
commit d443a4f573

View File

@ -81,10 +81,10 @@ l_read_t l_noread;
l_write_t l_nowrite;
static __inline int
ttyld_open(struct tty *tp)
ttyld_open(struct tty *tp, dev_t dev)
{
return ((*linesw[tp->t_line].l_open)(tp->t_dev, tp));
return ((*linesw[tp->t_line].l_open)(dev, tp));
}
static __inline int