diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2015-07-06 22:18:24 (GMT) |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2015-07-12 00:26:45 (GMT) |
commit | 4200e831e4a8fd09fa4e78de2e571ab270c12d06 (patch) | |
tree | da07c4aee66dccb1613b86930637436070167f4c /drivers/input/touchscreen/tsc2005.c | |
parent | 517178692ccd730a95b278bd8cd67e11498a9a84 (diff) | |
download | linux-4200e831e4a8fd09fa4e78de2e571ab270c12d06.tar.xz |
Input: of_touchscreen - switch to using device properties
Let's switch form OF to device properties so that common parsing code could
work not only on device tree but also on ACPI-based platforms.
Reviewed-by: Roger Quadros <rogerq@ti.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/touchscreen/tsc2005.c')
-rw-r--r-- | drivers/input/touchscreen/tsc2005.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/tsc2005.c b/drivers/input/touchscreen/tsc2005.c index d8c025b..aaf94752 100644 --- a/drivers/input/touchscreen/tsc2005.c +++ b/drivers/input/touchscreen/tsc2005.c @@ -709,7 +709,7 @@ static int tsc2005_probe(struct spi_device *spi) input_set_abs_params(input_dev, ABS_PRESSURE, 0, max_p, fudge_p, 0); if (np) - touchscreen_parse_of_params(input_dev, false); + touchscreen_parse_properties(input_dev, false); input_dev->open = tsc2005_open; input_dev->close = tsc2005_close; |