* [PATCH v2] input: egalax_ts: remove bogus OF dependency
@ 2013-04-25 9:15 Andy Shevchenko
2013-04-26 9:05 ` [v2] " Shevchenko, Andriy
0 siblings, 1 reply; 2+ messages in thread
From: Andy Shevchenko @ 2013-04-25 9:15 UTC (permalink / raw)
To: Dmitry Torokhov, linux-input, stable
From: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
There are platforms using this driver which do not have OF. However, commit
ae495e84 ("Input: egalax_ts - get gpio from devicetree") added a Kconfig
dependency on OF and broke OF-less setups.
The mentioned commit does actually two things. It makes device tree mandatory
which is quite wrong approach, and it appends check for wake up function, which
is correct. The wake up function uses dedicated gpio lines to prepare
touchscreen device. However this is not the case when touchscreen is connected
via USB, there is no gpio lines for that.
This patch allows to use the device in non-DT environment properly.
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Cc: stable@vger.kernel.org # v3.7+
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/input/touchscreen/Kconfig | 2 +-
drivers/input/touchscreen/egalax_ts.c | 8 +++++++-
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/drivers/input/touchscreen/Kconfig b/drivers/input/touchscreen/Kconfig
index f9a5fd8..006111b 100644
--- a/drivers/input/touchscreen/Kconfig
+++ b/drivers/input/touchscreen/Kconfig
@@ -227,7 +227,7 @@ config TOUCHSCREEN_EETI
config TOUCHSCREEN_EGALAX
tristate "EETI eGalax multi-touch panel support"
- depends on I2C && OF
+ depends on I2C
help
Say Y here to enable support for I2C connected EETI
eGalax multi-touch panels.
diff --git a/drivers/input/touchscreen/egalax_ts.c b/drivers/input/touchscreen/egalax_ts.c
index 17c9097..f85c074 100644
--- a/drivers/input/touchscreen/egalax_ts.c
+++ b/drivers/input/touchscreen/egalax_ts.c
@@ -128,7 +128,11 @@ static int egalax_wake_up_device(struct i2c_client *client)
int ret;
if (!np)
- return -ENODEV;
+ /*
+ * Do not try to wake up device on non-DT compatible platforms.
+ * For example this is the case for USB connected touchscreen.
+ */
+ return 0;
gpio = of_get_named_gpio(np, "wakeup-gpios", 0);
if (!gpio_is_valid(gpio))
@@ -287,10 +291,12 @@ static int egalax_ts_resume(struct device *dev)
static SIMPLE_DEV_PM_OPS(egalax_ts_pm_ops, egalax_ts_suspend, egalax_ts_resume);
+#ifdef CONFIG_OF
static struct of_device_id egalax_ts_dt_ids[] = {
{ .compatible = "eeti,egalax_ts" },
{ /* sentinel */ }
};
+#endif
static struct i2c_driver egalax_ts_driver = {
.driver = {
--
1.8.2.rc0.22.gb3600c3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [v2] input: egalax_ts: remove bogus OF dependency
2013-04-25 9:15 [PATCH v2] input: egalax_ts: remove bogus OF dependency Andy Shevchenko
@ 2013-04-26 9:05 ` Shevchenko, Andriy
0 siblings, 0 replies; 2+ messages in thread
From: Shevchenko, Andriy @ 2013-04-26 9:05 UTC (permalink / raw)
To: Dmitry Torokhov; +Cc: linux-input@vger.kernel.org, stable@vger.kernel.org
On Thu, 2013-04-25 at 09:15 +0000, Andy Shevchenko wrote:
> From: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
>
> There are platforms using this driver which do not have OF. However, commit
> ae495e84 ("Input: egalax_ts - get gpio from devicetree") added a Kconfig
> dependency on OF and broke OF-less setups.
Shame on me, I totally messed up with this!
Please, discard this patch.
--
Andy Shevchenko <andriy.shevchenko@intel.com>
Intel Finland Oy
---------------------------------------------------------------------
Intel Finland Oy
Registered Address: PL 281, 00181 Helsinki
Business Identity Code: 0357606 - 4
Domiciled in Helsinki
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-04-26 9:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-25 9:15 [PATCH v2] input: egalax_ts: remove bogus OF dependency Andy Shevchenko
2013-04-26 9:05 ` [v2] " Shevchenko, Andriy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).