Subject: There seems to be some missing code in qvss_compat.c
To: None <port-pmax@NetBSD.ORG>
From: D. Sean Davidson <davidson@zk3.dec.com>
List: port-pmax
Date: 07/02/1997 08:07:17
Is this intentional to disable mouse configuration for 3MIN and 3MAXPLUS
systems for now?  Without these changes I could not get the X server to
work because it always came back with the error:

Can't configure mouse/keyboard

Sean


src/sys/arch/pmax/dev/qvss_compat.c

566c566
< #if NSCC > 0
---
> #if NSCC > 1
570,571c570,571
<               sccMouseEvent = (void (*) __P((int)))genMouseEvent;
<               sccMouseButtons = (void (*) __P((int)))genMouseButtons;
---
>               sccMouseEvent = genMouseEvent;
>               sccMouseButtons = genMouseButtons;
614c614
< #if NSCC > 0
---
> #if NSCC > 1
618,619c618,619
<               sccMouseEvent = (void (*) __P((int)))0;
<               sccMouseButtons = (void (*) __P((int)))0;
---
>               sccMouseEvent = (void (*) __P((MouseReport *)) )0;
>               sccMouseButtons = (void (*) __P((MouseReport *)) )0;