Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 248511
b: refs/heads/master
c: 043b403
h: refs/heads/master
i:
  248509: 7d551db
  248507: c473e08
  248503: cde9a49
  248495: e4dc78a
  248479: 9a1fed0
  248447: e756070
v: v3
  • Loading branch information
Benjamin Tissoires authored and Jiri Kosina committed Mar 21, 2011
1 parent 0697336 commit 8d94411
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 294 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9498f954a4ec389806333041a1018909c6fe0518
refs/heads/master: 043b403aede4a528ed99ceaf050f567f1283a23e
7 changes: 1 addition & 6 deletions trunk/drivers/hid/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,7 @@ config HID_MULTITOUCH
- 'Sensing Win7-TwoFinger' panel by GeneralTouch
- eGalax dual-touch panels, including the
Joojoo and Wetab tablets
- Stantum multitouch panels

If unsure, say N.

Expand Down Expand Up @@ -493,12 +494,6 @@ config HID_SONY
---help---
Support for Sony PS3 controller.

config HID_STANTUM
tristate "Stantum multitouch panel"
depends on USB_HID
---help---
Support for Stantum multitouch panel.

config HID_SUNPLUS
tristate "Sunplus wireless desktop"
depends on USB_HID
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/hid/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ obj-$(CONFIG_HID_ROCCAT_PYRA) += hid-roccat-pyra.o
obj-$(CONFIG_HID_SAMSUNG) += hid-samsung.o
obj-$(CONFIG_HID_SMARTJOYPLUS) += hid-sjoy.o
obj-$(CONFIG_HID_SONY) += hid-sony.o
obj-$(CONFIG_HID_STANTUM) += hid-stantum.o
obj-$(CONFIG_HID_SUNPLUS) += hid-sunplus.o
obj-$(CONFIG_HID_GREENASIA) += hid-gaff.o
obj-$(CONFIG_HID_THRUSTMASTER) += hid-tmff.o
Expand Down
15 changes: 15 additions & 0 deletions trunk/drivers/hid/hid-multitouch.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ struct mt_class {
#define MT_CLS_DUAL_INRANGE_CONTACTNUMBER 3
#define MT_CLS_CYPRESS 4
#define MT_CLS_EGALAX 5
#define MT_CLS_STANTUM 6

#define MT_DEFAULT_MAXCONTACT 10

Expand Down Expand Up @@ -138,6 +139,9 @@ struct mt_class mt_classes[] = {
.sn_move = 4096,
.sn_pressure = 32,
},
{ .name = MT_CLS_STANTUM,
.quirks = MT_QUIRK_VALID_IS_CONFIDENCE },

{ }
};

Expand Down Expand Up @@ -552,6 +556,17 @@ static const struct hid_device_id mt_devices[] = {
HID_USB_DEVICE(USB_VENDOR_ID_DWAV,
USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH4) },

/* Stantum panels */
{ .driver_data = MT_CLS_STANTUM,
HID_USB_DEVICE(USB_VENDOR_ID_STANTUM,
USB_DEVICE_ID_MTP)},
{ .driver_data = MT_CLS_STANTUM,
HID_USB_DEVICE(USB_VENDOR_ID_STANTUM,
USB_DEVICE_ID_MTP_STM)},
{ .driver_data = MT_CLS_STANTUM,
HID_USB_DEVICE(USB_VENDOR_ID_STANTUM,
USB_DEVICE_ID_MTP_SITRONIX)},

{ }
};
MODULE_DEVICE_TABLE(hid, mt_devices);
Expand Down
286 changes: 0 additions & 286 deletions trunk/drivers/hid/hid-stantum.c

This file was deleted.

0 comments on commit 8d94411

Please sign in to comment.