All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] Input: of_touchscreen - always issue warning if axis is not set up
@ 2015-07-07  0:27 Dmitry Torokhov
  2015-07-07  0:27 ` [PATCH 2/3] Input: of_touchscreen - fix setting max values on X/Y axis Dmitry Torokhov
  2015-07-07  0:27 ` [PATCH 3/3] Input: of_touchscreen - switch to using device properties Dmitry Torokhov
  0 siblings, 2 replies; 14+ messages in thread
From: Dmitry Torokhov @ 2015-07-07  0:27 UTC (permalink / raw)
  To: linux-input, Maxime Ripard, Sebastian Reichel
  Cc: Pavel Machek, Roger Quadros, linux-kernel

Do issue warning about axis that is present in device tree but not specified
by the driver even in case of multi-touch axis as callers now tell us if they
expect multi-touch data or not.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 drivers/input/touchscreen/of_touchscreen.c | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/drivers/input/touchscreen/of_touchscreen.c b/drivers/input/touchscreen/of_touchscreen.c
index 806cd0a..759cf4b 100644
--- a/drivers/input/touchscreen/of_touchscreen.c
+++ b/drivers/input/touchscreen/of_touchscreen.c
@@ -39,13 +39,9 @@ static void touchscreen_set_params(struct input_dev *dev,
 	struct input_absinfo *absinfo;
 
 	if (!test_bit(axis, dev->absbit)) {
-		/*
-		 * Emit a warning only if the axis is not a multitouch
-		 * axis, which might not be set by the driver.
-		 */
-		if (!input_is_mt_axis(axis))
-			dev_warn(&dev->dev,
-				 "DT specifies parameters but the axis is not set up\n");
+		dev_warn(&dev->dev,
+			 "DT specifies parameters but the axis %lu is not set up\n",
+			 axis);
 		return;
 	}
 
-- 
2.4.3.573.g4eafbef


^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2015-07-10  8:33 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-07  0:27 [PATCH 1/3] Input: of_touchscreen - always issue warning if axis is not set up Dmitry Torokhov
2015-07-07  0:27 ` [PATCH 2/3] Input: of_touchscreen - fix setting max values on X/Y axis Dmitry Torokhov
2015-07-07  9:37   ` Roger Quadros
2015-07-07  9:37     ` Roger Quadros
2015-07-07 16:25     ` Dmitry Torokhov
2015-07-08  7:59       ` Roger Quadros
2015-07-08  7:59         ` Roger Quadros
2015-07-08 15:08         ` Dmitry Torokhov
2015-07-09  8:32           ` Roger Quadros
2015-07-09  8:32             ` Roger Quadros
2015-07-09 18:16             ` Dmitry Torokhov
2015-07-10  8:32               ` Roger Quadros
2015-07-10  8:32                 ` Roger Quadros
2015-07-07  0:27 ` [PATCH 3/3] Input: of_touchscreen - switch to using device properties Dmitry Torokhov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.