Fwd: [PATCH] IdealTEK URTC1000 support for usbtouchscreen

Previous thread: [PATCH] Track accurate idle time with tick_sched.idle_sleeptime by Venki Pallipadi on Monday, August 27, 2007 - 2:56 pm. (9 messages)

Next thread: [PATCH] Fix kobject uevent string handling errors (updated) by Mathieu Desnoyers on Monday, August 27, 2007 - 3:07 pm. (1 message)
From: Daniel Ritz
Date: Monday, August 27, 2007 - 3:07 pm

> OK, so here's the new patch, inline this time:

thanks. looks fine now. forwarding to Dmitry for mainline inclusion...

rgds
-daniel

-----------------

[PATCH] IdealTEK URTC1000 support for usbtouchscreen

This patch adds support for IdealTEK URTC1000 touchscreen controllers.

Documentation can be downloaded at 
http://projects.tbmn.org/cgi-bin/trac.cgi/wiki/urtc-1000

Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
Signed-off-by: Daniel Ritz <daniel.ritz@gmx.ch>


diff -ur linux-2.6.23-rc3-orig/drivers/input/touchscreen/Kconfig linux-2.6.23-rc3/drivers/input/touchscreen/Kconfig
--- linux-2.6.23-rc3-orig/drivers/input/touchscreen/Kconfig	2007-08-21 15:32:50.000000000 +0200
+++ linux-2.6.23-rc3/drivers/input/touchscreen/Kconfig	2007-08-23 16:07:08.000000000 +0200
@@ -191,6 +191,7 @@
 	  - Gunze AHL61
 	  - DMC TSC-10/25
 	  - IRTOUCHSYSTEMS/UNITOP
+	  - IdealTEK URTC1000
 
 	  Have a look at <http://linux.chapter7.ch/touchkit/> for
 	  a usage description and the required user-space stuff.
@@ -238,4 +239,9 @@
 	bool "IRTOUCHSYSTEMS/UNITOP device support" if EMBEDDED
 	depends on TOUCHSCREEN_USB_COMPOSITE
 
+config TOUCHSCREEN_USB_IDEALTEK
+	default y
+	bool "IdealTEK URTC1000 device support" if EMBEDDED
+	depends on TOUCHSCREEN_USB_COMPOSITE
+
 endif
diff -ur linux-2.6.23-rc3-orig/drivers/input/touchscreen/usbtouchscreen.c linux-2.6.23-rc3/drivers/input/touchscreen/usbtouchscreen.c
--- linux-2.6.23-rc3-orig/drivers/input/touchscreen/usbtouchscreen.c	2007-08-23 16:24:16.000000000 +0200
+++ linux-2.6.23-rc3/drivers/input/touchscreen/usbtouchscreen.c	2007-08-27 09:29:06.000000000 +0200
@@ -10,6 +10,7 @@
  *  - Gunze AHL61
  *  - DMC TSC-10/25
  *  - IRTOUCHSYSTEMS/UNITOP
+ *  - IdealTEK URTC1000
  *
  * Copyright (C) 2004-2006 by Daniel Ritz <daniel.ritz@gmx.ch>
  * Copyright (C) by Todd E. Johnson (mtouchusb.c)
@@ -92,7 +93,7 @@
 };
 
 
-#if defined(CONFIG_TOUCHSCREEN_USB_EGALAX) || defined(CONFIG_TOUCHSCREEN_USB_ETURBO)
+#if ...
From: Dmitry Torokhov
Date: Tuesday, September 4, 2007 - 9:33 pm

Applied, thank you.

-- 
Dmitry
-

Previous thread: [PATCH] Track accurate idle time with tick_sched.idle_sleeptime by Venki Pallipadi on Monday, August 27, 2007 - 2:56 pm. (9 messages)

Next thread: [PATCH] Fix kobject uevent string handling errors (updated) by Mathieu Desnoyers on Monday, August 27, 2007 - 3:07 pm. (1 message)