Remove references to old joystick driver from this file, which Peter

forgot to do when he converted it to newbus.

Note: make *sure* to remove any old joy.o object files from your kernel
build directories in order to be sure the joy driver is properly recompiled.

Noticed by: phk
This commit is contained in:
Bill Paul 1999-12-05 22:18:29 +00:00
parent 5af7944d91
commit cdb3b8456d

View File

@ -67,7 +67,6 @@
#include "spigot.h"
#include "gp.h"
#include "gsc.h"
#include "joy.h"
#include "cy.h"
#include "dgb.h"
#include "dgm.h"
@ -132,7 +131,6 @@ extern struct isa_driver ctxdriver;
extern struct isa_driver spigotdriver;
extern struct isa_driver gpdriver;
extern struct isa_driver gscdriver;
extern struct isa_driver joydriver;
extern struct isa_driver cydriver;
extern struct isa_driver dgbdriver;
extern struct isa_driver dgmdriver;
@ -352,9 +350,6 @@ static struct old_isa_driver old_drivers[] = {
#if NSPIGOT > 0
{ INTR_TYPE_MISC, &spigotdriver },
#endif
#if NJOY > 0
{ INTR_TYPE_MISC, &joydriver },
#endif
};