Commit 5e740ce6 authored by Dmitry Torokhov's avatar Dmitry Torokhov

Input: wacom_serial4 - prepare for wacom USB moving to HID

wacom_wac.h will be moving to drivers/hid. Since we only need 3 definitions
from it let's simply copy them over.
Acked-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent f348f329
...@@ -113,7 +113,6 @@ ...@@ -113,7 +113,6 @@
#include <linux/serio.h> #include <linux/serio.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/string.h> #include <linux/string.h>
#include "wacom_wac.h"
MODULE_AUTHOR("Julian Squires <julian@cipht.net>, Hans de Goede <hdegoede@redhat.com>"); MODULE_AUTHOR("Julian Squires <julian@cipht.net>, Hans de Goede <hdegoede@redhat.com>");
MODULE_DESCRIPTION("Wacom protocol 4 serial tablet driver"); MODULE_DESCRIPTION("Wacom protocol 4 serial tablet driver");
...@@ -149,6 +148,11 @@ MODULE_LICENSE("GPL"); ...@@ -149,6 +148,11 @@ MODULE_LICENSE("GPL");
#define F_HAS_STYLUS2 0x02 #define F_HAS_STYLUS2 0x02
#define F_HAS_SCROLLWHEEL 0x04 #define F_HAS_SCROLLWHEEL 0x04
/* device IDs */
#define STYLUS_DEVICE_ID 0x02
#define CURSOR_DEVICE_ID 0x06
#define ERASER_DEVICE_ID 0x0A
enum { STYLUS = 1, ERASER, CURSOR }; enum { STYLUS = 1, ERASER, CURSOR };
static const struct { static const struct {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment