···53struct grip_mp {54 struct gameport *gameport;55 struct grip_port *port[GRIP_MAX_PORTS];56-// struct input_dev *dev[4];57-// int mode[4];58-// int registered[4];59 int reads;60 int bads;61-62- /* individual gamepad states */63-// int buttons[4];64-// int xaxes[4];65-// int yaxes[4];66-// int dirty[4]; /* has the state been updated? */67};6869/*
···53struct grip_mp {54 struct gameport *gameport;55 struct grip_port *port[GRIP_MAX_PORTS];00056 int reads;57 int bads;00000058};5960/*
-10
drivers/input/keyboard/Kconfig
···143 To compile this driver as a module, choose M here: the144 module will be called spitzkbd.145146-config KEYBOARD_MAPLE147- tristate "Maple bus keyboard"148- depends on SH_DREAMCAST && MAPLE149- help150- Say Y here if you have a DreamCast console running Linux and have151- a keyboard attached to its Maple bus.152-153- To compile this driver as a module, choose M here: the154- module will be called maple_keyb.155-156config KEYBOARD_AMIGA157 tristate "Amiga keyboard"158 depends on AMIGA
···143 To compile this driver as a module, choose M here: the144 module will be called spitzkbd.1450000000000146config KEYBOARD_AMIGA147 tristate "Amiga keyboard"148 depends on AMIGA
-1
drivers/input/keyboard/Makefile
···5# Each configuration option enables a list of files.67obj-$(CONFIG_KEYBOARD_ATKBD) += atkbd.o8-obj-$(CONFIG_KEYBOARD_MAPLE) += maple_keyb.o9obj-$(CONFIG_KEYBOARD_SUNKBD) += sunkbd.o10obj-$(CONFIG_KEYBOARD_LKKBD) += lkkbd.o11obj-$(CONFIG_KEYBOARD_XTKBD) += xtkbd.o
···5# Each configuration option enables a list of files.67obj-$(CONFIG_KEYBOARD_ATKBD) += atkbd.o08obj-$(CONFIG_KEYBOARD_SUNKBD) += sunkbd.o9obj-$(CONFIG_KEYBOARD_LKKBD) += lkkbd.o10obj-$(CONFIG_KEYBOARD_XTKBD) += xtkbd.o
···86 To compile this driver as a module, choose M here: the87 module will be called pc110pad.8889-config MOUSE_MAPLE90- tristate "Maple bus mouse"91- depends on SH_DREAMCAST && MAPLE92- help93- Say Y if you have a DreamCast console and a mouse attached to94- its Maple bus.95-96- To compile this driver as a module, choose M here: the97- module will be called maplemouse.98-99config MOUSE_AMIGA100 tristate "Amiga mouse"101 depends on AMIGA
···86 To compile this driver as a module, choose M here: the87 module will be called pc110pad.88000000000089config MOUSE_AMIGA90 tristate "Amiga mouse"91 depends on AMIGA
···270271 err_unregister_mouse_dev:272 input_unregister_device(mouse_dev);273+ mouse_dev = NULL; /* so we don't try to free it again below */274 err_free_devices:275 input_free_device(mouse_dev);276 input_free_device(keybd_dev);