From: <far...@us...> - 2006-12-08 19:05:39
|
Revision: 703 http://svn.sourceforge.net/hackndev/?rev=703&view=rev Author: farcaller Date: 2006-12-08 11:05:36 -0800 (Fri, 08 Dec 2006) Log Message: ----------- palmt3: tsc2101 ts code depends on SOC_TSC2101, not selects it Modified Paths: -------------- linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig Modified: linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig =================================================================== --- linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig 2006-12-08 19:04:03 UTC (rev 702) +++ linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig 2006-12-08 19:05:36 UTC (rev 703) @@ -51,8 +51,7 @@ config TOUCHSCREEN_TSC2101 tristate "TI TSC2101 touchscreen input driver" - depends on (MACH_HX2750 || MACH_T3XSCALE) && INPUT && INPUT_TOUCHSCREEN - select SOC_TSC2101 + depends on (MACH_HX2750 || MACH_T3XSCALE) && INPUT && INPUT_TOUCHSCREEN && SOC_TSC2101 default y help Say Y here to enable the driver for the touchscreen on the This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <far...@us...> - 2006-12-08 20:31:20
|
Revision: 706 http://svn.sourceforge.net/hackndev/?rev=706&view=rev Author: farcaller Date: 2006-12-08 12:31:11 -0800 (Fri, 08 Dec 2006) Log Message: ----------- palmt3: removed cross-reference in tsc2101 garbage Modified Paths: -------------- linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig Modified: linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig =================================================================== --- linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig 2006-12-08 20:26:04 UTC (rev 705) +++ linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig 2006-12-08 20:31:11 UTC (rev 706) @@ -51,7 +51,8 @@ config TOUCHSCREEN_TSC2101 tristate "TI TSC2101 touchscreen input driver" - depends on (MACH_HX2750 || MACH_T3XSCALE) && INPUT && INPUT_TOUCHSCREEN && SOC_TSC2101 + depends on (MACH_HX2750 || MACH_T3XSCALE) && INPUT && INPUT_TOUCHSCREEN + select SOC_TSC2101 default y help Say Y here to enable the driver for the touchscreen on the This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <far...@us...> - 2006-12-08 20:45:19
|
Revision: 707 http://svn.sourceforge.net/hackndev/?rev=707&view=rev Author: farcaller Date: 2006-12-08 12:45:15 -0800 (Fri, 08 Dec 2006) Log Message: ----------- palmt3: tsc2101 is REALLY ugly. Fixed deps again Modified Paths: -------------- linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig Modified: linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig =================================================================== --- linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig 2006-12-08 20:31:11 UTC (rev 706) +++ linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig 2006-12-08 20:45:15 UTC (rev 707) @@ -52,7 +52,6 @@ config TOUCHSCREEN_TSC2101 tristate "TI TSC2101 touchscreen input driver" depends on (MACH_HX2750 || MACH_T3XSCALE) && INPUT && INPUT_TOUCHSCREEN - select SOC_TSC2101 default y help Say Y here to enable the driver for the touchscreen on the This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ph...@us...> - 2007-02-18 02:46:52
|
Revision: 839 http://svn.sourceforge.net/hackndev/?rev=839&view=rev Author: phiren Date: 2007-02-17 18:46:48 -0800 (Sat, 17 Feb 2007) Log Message: ----------- Fixed touchscreen Kconfig Modified Paths: -------------- linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig Modified: linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig =================================================================== --- linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig 2007-02-18 01:53:52 UTC (rev 838) +++ linux4palm/linux/trunk/drivers/input/touchscreen/Kconfig 2007-02-18 02:46:48 UTC (rev 839) @@ -51,7 +51,8 @@ config TOUCHSCREEN_TSC2101 tristate "TI TSC2101 touchscreen input driver" - depends on (MACH_HX2750 || MACH_T3XSCALE) && INPUT && INPUT_TOUCHSCREEN + depends on MACH_HX2750 && INPUT && INPUT_TOUCHSCREEN + select SOC_TSC2101 default y help Say Y here to enable the driver for the touchscreen on the @@ -121,48 +122,6 @@ To compile this driver as a module, choose M here: the module will be called hp680_ts_input. -config TOUCHSCREEN_WM97XX - tristate "Support for WM97xx AC97 touchscreen controllers" - depends SND_AC97_BUS - -choice - prompt "WM97xx codec type" - -config TOUCHSCREEN_WM9705 - bool "WM9705 Touchscreen interface support" - depends on TOUCHSCREEN_WM97XX - help - Say Y here if you have the wm9705 touchscreen. - - If unsure, say N. - - To compile this driver as a module, choose M here: the - module will be called wm9705. - -config TOUCHSCREEN_WM9712 - bool "WM9712 Touchscreen interface support" - depends on TOUCHSCREEN_WM97XX - help - Say Y here if you have the wm9712 touchscreen. - - If unsure, say N. - - To compile this driver as a module, choose M here: the - module will be called wm9712. - -config TOUCHSCREEN_WM9713 - bool "WM9713 Touchscreen interface support" - depends on TOUCHSCREEN_WM97XX - help - Say Y here if you have the wm9713 touchscreen. - - If unsure, say N. - - To compile this driver as a module, choose M here: the - module will be called wm9713. - -endchoice - config TOUCHSCREEN_PENMOUNT tristate "Penmount serial touchscreen" select SERIO This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |