mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
It is probably too early to drop the dev_t argument for the ttyld_open()
function.
This commit is contained in:
parent
a64d4b2609
commit
d443a4f573
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=130076
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user