]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
Input: wacom - move the USB (now hid) Wacom driver in drivers/hid
authorBenjamin Tissoires <benjamin.tissoires@redhat.com>
Thu, 24 Jul 2014 20:10:09 +0000 (13:10 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Sat, 26 Jul 2014 01:55:38 +0000 (18:55 -0700)
wacom.ko is now a full HID driver, we have to move it into the proper
subdirectory: drivers/hid.

Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/hid/Kconfig
drivers/hid/Makefile
drivers/hid/wacom.h [moved from drivers/input/tablet/wacom.h with 100% similarity]
drivers/hid/wacom_sys.c [moved from drivers/input/tablet/wacom_sys.c with 100% similarity]
drivers/hid/wacom_wac.c [moved from drivers/input/tablet/wacom_wac.c with 100% similarity]
drivers/hid/wacom_wac.h [moved from drivers/input/tablet/wacom_wac.h with 100% similarity]
drivers/input/tablet/Kconfig
drivers/input/tablet/Makefile

index 5e79c6ad914f301aa676a763412727987c8610a4..64366f1feb17dd79d9b470c3cf1712b0af638697 100644 (file)
@@ -755,6 +755,19 @@ config HID_WACOM
        ---help---
        Support for Wacom Graphire Bluetooth and Intuos4 WL tablets.
 
+config HID_USB_WACOM
+       tristate "Wacom Intuos/Graphire tablet support (USB)"
+       depends on HID
+       select POWER_SUPPLY
+       select NEW_LEDS
+       select LEDS_CLASS
+       help
+         Say Y here if you want to use the USB version of the Wacom Intuos
+         or Graphire tablet.
+
+         To compile this driver as a module, choose M here: the
+         module will be called wacom.
+
 config HID_WIIMOTE
        tristate "Nintendo Wii / Wii U peripherals"
        depends on HID
index a6fa6baf368e49a254ba79646bc29abbd6575519..55b69acdb680aaa0881fcc51fa1748ed27b6536f 100644 (file)
@@ -116,6 +116,9 @@ obj-$(CONFIG_HID_XINMO)             += hid-xinmo.o
 obj-$(CONFIG_HID_ZEROPLUS)     += hid-zpff.o
 obj-$(CONFIG_HID_ZYDACRON)     += hid-zydacron.o
 obj-$(CONFIG_HID_WACOM)                += hid-wacom.o
+
+wacom-objs                     := wacom_wac.o wacom_sys.o
+obj-$(CONFIG_HID_USB_WACOM)    += wacom.o
 obj-$(CONFIG_HID_WALTOP)       += hid-waltop.o
 obj-$(CONFIG_HID_WIIMOTE)      += hid-wiimote.o
 obj-$(CONFIG_HID_SENSOR_HUB)   += hid-sensor-hub.o
index bed7cbf84cfd513a2a05b7553c3318698e3d5d7e..cd9c79e0a11b075e56be84bb56fb537f5b4900c7 100644 (file)
@@ -73,20 +73,4 @@ config TABLET_USB_KBTAB
          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)"
-       depends on USB_ARCH_HAS_HCD
-       select POWER_SUPPLY
-       select USB
-       select NEW_LEDS
-       select LEDS_CLASS
-       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
index 3f6c25220638c179de271d1145f25054a3fb137d..cc3bc17d5b08742ad63cb114c0e35e9fb331eac1 100644 (file)
@@ -2,12 +2,9 @@
 # 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_HANWANG) += hanwang.o
 obj-$(CONFIG_TABLET_USB_KBTAB) += kbtab.o
-obj-$(CONFIG_TABLET_USB_WACOM) += wacom.o