mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-07 04:06:38 +07:00
Input: of_touchscreen - always issue warning if axis is not set up
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. Reviewed-by: Roger Quadros <rogerq@ti.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
b6d30968d8
commit
f61fd21dea
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user