aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/hid/Kconfig13
-rw-r--r--drivers/hid/Makefile3
-rw-r--r--drivers/hid/wacom.h (renamed from drivers/input/tablet/wacom.h)0
-rw-r--r--drivers/hid/wacom_sys.c (renamed from drivers/input/tablet/wacom_sys.c)0
-rw-r--r--drivers/hid/wacom_wac.c (renamed from drivers/input/tablet/wacom_wac.c)0
-rw-r--r--drivers/hid/wacom_wac.h (renamed from drivers/input/tablet/wacom_wac.h)0
-rw-r--r--drivers/input/tablet/Kconfig16
-rw-r--r--drivers/input/tablet/Makefile3
8 files changed, 16 insertions, 19 deletions
diff --git a/drivers/hid/Kconfig b/drivers/hid/Kconfig
index 5e79c6ad914f..64366f1feb17 100644
--- a/drivers/hid/Kconfig
+++ b/drivers/hid/Kconfig
@@ -755,6 +755,19 @@ config HID_WACOM
755 ---help--- 755 ---help---
756 Support for Wacom Graphire Bluetooth and Intuos4 WL tablets. 756 Support for Wacom Graphire Bluetooth and Intuos4 WL tablets.
757 757
758config HID_USB_WACOM
759 tristate "Wacom Intuos/Graphire tablet support (USB)"
760 depends on HID
761 select POWER_SUPPLY
762 select NEW_LEDS
763 select LEDS_CLASS
764 help
765 Say Y here if you want to use the USB version of the Wacom Intuos
766 or Graphire tablet.
767
768 To compile this driver as a module, choose M here: the
769 module will be called wacom.
770
758config HID_WIIMOTE 771config HID_WIIMOTE
759 tristate "Nintendo Wii / Wii U peripherals" 772 tristate "Nintendo Wii / Wii U peripherals"
760 depends on HID 773 depends on HID
diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile
index a6fa6baf368e..55b69acdb680 100644
--- a/drivers/hid/Makefile
+++ b/drivers/hid/Makefile
@@ -116,6 +116,9 @@ obj-$(CONFIG_HID_XINMO) += hid-xinmo.o
116obj-$(CONFIG_HID_ZEROPLUS) += hid-zpff.o 116obj-$(CONFIG_HID_ZEROPLUS) += hid-zpff.o
117obj-$(CONFIG_HID_ZYDACRON) += hid-zydacron.o 117obj-$(CONFIG_HID_ZYDACRON) += hid-zydacron.o
118obj-$(CONFIG_HID_WACOM) += hid-wacom.o 118obj-$(CONFIG_HID_WACOM) += hid-wacom.o
119
120wacom-objs := wacom_wac.o wacom_sys.o
121obj-$(CONFIG_HID_USB_WACOM) += wacom.o
119obj-$(CONFIG_HID_WALTOP) += hid-waltop.o 122obj-$(CONFIG_HID_WALTOP) += hid-waltop.o
120obj-$(CONFIG_HID_WIIMOTE) += hid-wiimote.o 123obj-$(CONFIG_HID_WIIMOTE) += hid-wiimote.o
121obj-$(CONFIG_HID_SENSOR_HUB) += hid-sensor-hub.o 124obj-$(CONFIG_HID_SENSOR_HUB) += hid-sensor-hub.o
diff --git a/drivers/input/tablet/wacom.h b/drivers/hid/wacom.h
index dd67b7da8a97..dd67b7da8a97 100644
--- a/drivers/input/tablet/wacom.h
+++ b/drivers/hid/wacom.h
diff --git a/drivers/input/tablet/wacom_sys.c b/drivers/hid/wacom_sys.c
index 06e304b3bbfd..06e304b3bbfd 100644
--- a/drivers/input/tablet/wacom_sys.c
+++ b/drivers/hid/wacom_sys.c
diff --git a/drivers/input/tablet/wacom_wac.c b/drivers/hid/wacom_wac.c
index cd915211fcca..cd915211fcca 100644
--- a/drivers/input/tablet/wacom_wac.c
+++ b/drivers/hid/wacom_wac.c
diff --git a/drivers/input/tablet/wacom_wac.h b/drivers/hid/wacom_wac.h
index 4c592475b237..4c592475b237 100644
--- a/drivers/input/tablet/wacom_wac.h
+++ b/drivers/hid/wacom_wac.h
diff --git a/drivers/input/tablet/Kconfig b/drivers/input/tablet/Kconfig
index bed7cbf84cfd..cd9c79e0a11b 100644
--- a/drivers/input/tablet/Kconfig
+++ b/drivers/input/tablet/Kconfig
@@ -73,20 +73,4 @@ config TABLET_USB_KBTAB
73 To compile this driver as a module, choose M here: the 73 To compile this driver as a module, choose M here: the
74 module will be called kbtab. 74 module will be called kbtab.
75 75
76config TABLET_USB_WACOM
77 tristate "Wacom Intuos/Graphire tablet support (USB)"
78 depends on USB_ARCH_HAS_HCD
79 select POWER_SUPPLY
80 select USB
81 select NEW_LEDS
82 select LEDS_CLASS
83 help
84 Say Y here if you want to use the USB version of the Wacom Intuos
85 or Graphire tablet. Make sure to say Y to "Mouse support"
86 (CONFIG_INPUT_MOUSEDEV) and/or "Event interface support"
87 (CONFIG_INPUT_EVDEV) as well.
88
89 To compile this driver as a module, choose M here: the
90 module will be called wacom.
91
92endif 76endif
diff --git a/drivers/input/tablet/Makefile b/drivers/input/tablet/Makefile
index 3f6c25220638..cc3bc17d5b08 100644
--- a/drivers/input/tablet/Makefile
+++ b/drivers/input/tablet/Makefile
@@ -2,12 +2,9 @@
2# Makefile for the tablet drivers 2# Makefile for the tablet drivers
3# 3#
4 4
5# Multipart objects.
6wacom-objs := wacom_wac.o wacom_sys.o
7 5
8obj-$(CONFIG_TABLET_USB_ACECAD) += acecad.o 6obj-$(CONFIG_TABLET_USB_ACECAD) += acecad.o
9obj-$(CONFIG_TABLET_USB_AIPTEK) += aiptek.o 7obj-$(CONFIG_TABLET_USB_AIPTEK) += aiptek.o
10obj-$(CONFIG_TABLET_USB_GTCO) += gtco.o 8obj-$(CONFIG_TABLET_USB_GTCO) += gtco.o
11obj-$(CONFIG_TABLET_USB_HANWANG) += hanwang.o 9obj-$(CONFIG_TABLET_USB_HANWANG) += hanwang.o
12obj-$(CONFIG_TABLET_USB_KBTAB) += kbtab.o 10obj-$(CONFIG_TABLET_USB_KBTAB) += kbtab.o
13obj-$(CONFIG_TABLET_USB_WACOM) += wacom.o