summaryrefslogtreecommitdiff
path: root/sys/arch/vax/uba/qv.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/vax/uba/qv.c')
-rw-r--r--sys/arch/vax/uba/qv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/vax/uba/qv.c b/sys/arch/vax/uba/qv.c
index 4ae41721a87..a70bc1345e1 100644
--- a/sys/arch/vax/uba/qv.c
+++ b/sys/arch/vax/uba/qv.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: qv.c,v 1.13 2007/09/15 14:28:17 krw Exp $ */
+/* $OpenBSD: qv.c,v 1.14 2010/04/12 12:57:52 tedu Exp $ */
/* $NetBSD: qv.c,v 1.2 1996/09/02 06:44:28 mycroft Exp $ */
/*-
@@ -406,7 +406,7 @@ qvopen(dev, flag)
* mouse channel. For the mouse we init the ring ptr's.
*/
if( QVCHAN(unit) != QVMOUSECHAN )
- return ((*linesw[tp->t_line].l_open)(dev, tp));
+ return ((*linesw[tp->t_line].l_open)(dev, tp, p));
else {
mouseon = 1;
/* set up event queue for later */
@@ -447,7 +447,7 @@ qvclose(dev, flag, mode, p)
* otherwise clear the state flag, and put the keyboard into down/up.
*/
if (QVCHAN(unit) != QVMOUSECHAN) {
- (*linesw[tp->t_line].l_close)(tp, flag);
+ (*linesw[tp->t_line].l_close)(tp, flag, p);
error = ttyclose(tp);
} else {
mouseon = 0;