-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Input: move USB tablets under drivers/input/tablet
This will allow concentrating all input devices in one place in {menu|x|q}config. Signed-off-by: Dmitry Torokhov <dtor@mail.ru> Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
- Loading branch information
Dmitry Torokhov
committed
May 8, 2007
1 parent
d2ada55
commit 4104d13
Showing
15 changed files
with
93 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# | ||
# Tablet driver configuration | ||
# | ||
menuconfig INPUT_TABLET | ||
bool "Tablets" | ||
help | ||
Say Y here, and a list of supported tablets will be displayed. | ||
This option doesn't affect the kernel. | ||
|
||
If unsure, say Y. | ||
|
||
if INPUT_TABLET | ||
|
||
config TABLET_USB_ACECAD | ||
tristate "Acecad Flair tablet support (USB)" | ||
select USB | ||
help | ||
Say Y here if you want to use the USB version of the Acecad Flair | ||
tablet. Make sure to say Y to "Mouse support" | ||
(CONFIG_INPUT_MOUSEDEV) and/or "Event interface support" | ||
(CONFIG_INPUT_EVDEV) as well. | ||
|
||
To compile this driver as a module, choose M here: the | ||
module will be called acecad. | ||
|
||
config TABLET_USB_AIPTEK | ||
tristate "Aiptek 6000U/8000U tablet support (USB)" | ||
select USB | ||
help | ||
Say Y here if you want to use the USB version of the Aiptek 6000U | ||
or Aiptek 8000U tablet. Make sure to say Y to "Mouse support" | ||
(CONFIG_INPUT_MOUSEDEV) and/or "Event interface support" | ||
(CONFIG_INPUT_EVDEV) as well. | ||
|
||
To compile this driver as a module, choose M here: the | ||
module will be called aiptek. | ||
|
||
config TABLET_USB_GTCO | ||
tristate "GTCO CalComp/InterWrite USB Support" | ||
depends on USB && INPUT | ||
help | ||
Say Y here if you want to use the USB version of the GTCO | ||
CalComp/InterWrite Tablet. Make sure to say Y to "Mouse support" | ||
(CONFIG_INPUT_MOUSEDEV) and/or "Event interface support" | ||
(CONFIG_INPUT_EVDEV) as well. | ||
|
||
To compile this driver as a module, choose M here: the | ||
module will be called gtco. | ||
|
||
config TABLET_USB_KBTAB | ||
tristate "KB Gear JamStudio tablet support (USB)" | ||
select USB | ||
help | ||
Say Y here if you want to use the USB version of the KB Gear | ||
JamStudio tablet. Make sure to say Y to "Mouse support" | ||
(CONFIG_INPUT_MOUSEDEV) and/or "Event interface support" | ||
(CONFIG_INPUT_EVDEV) as well. | ||
|
||
To compile this driver as a module, choose M here: the | ||
module will be called kbtab. | ||
|
||
config TABLET_USB_WACOM | ||
tristate "Wacom Intuos/Graphire tablet support (USB)" | ||
select USB | ||
help | ||
Say Y here if you want to use the USB version of the Wacom Intuos | ||
or Graphire tablet. Make sure to say Y to "Mouse support" | ||
(CONFIG_INPUT_MOUSEDEV) and/or "Event interface support" | ||
(CONFIG_INPUT_EVDEV) as well. | ||
|
||
To compile this driver as a module, choose M here: the | ||
module will be called wacom. | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# | ||
# Makefile for the tablet drivers | ||
# | ||
|
||
# Multipart objects. | ||
wacom-objs := wacom_wac.o wacom_sys.o | ||
|
||
obj-$(CONFIG_TABLET_USB_ACECAD) += acecad.o | ||
obj-$(CONFIG_TABLET_USB_AIPTEK) += aiptek.o | ||
obj-$(CONFIG_TABLET_USB_GTCO) += gtco.o | ||
obj-$(CONFIG_TABLET_USB_KBTAB) += kbtab.o | ||
obj-$(CONFIG_TABLET_USB_WACOM) += wacom.o |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
drivers/usb/input/wacom_sys.c → drivers/input/tablet/wacom_sys.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
drivers/usb/input/wacom_wac.c → drivers/input/tablet/wacom_wac.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
drivers/usb/input/wacom_wac.h → drivers/input/tablet/wacom_wac.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters