Re: 1.3.90

Philip Blundell (phil@tazenda.demon.co.uk)
Wed, 17 Apr 1996 10:23:36 +0100 (BST)


On Tue, 16 Apr 1996, Peter Jones wrote:

> The Makefile in drivers/char doesn't reference CONFIG_82C710_MOUSE -
> it appears to be a "specialisation" of the PSMOUSE. I _guess_ it
> should simply not be tested in misc.c line 199. That gives the
> following patch:
>
> --- misc.c.orig Tue Apr 16 20:52:06 1996
> +++ misc.c Tue Apr 16 20:52:18 1996
> @@ -196,7 +196,7 @@
> #ifdef CONFIG_BUSMOUSE
> bus_mouse_init();
> #endif
> -#if defined CONFIG_PSMOUSE || defined CONFIG_82C710_MOUSE
> +#if defined CONFIG_PSMOUSE
> psaux_init();
> #endif
> #ifdef CONFIG_MS_BUSMOUSE

Yes, that looks correct. You can't have 82C710 without ps2aux.

P.