aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorRoland Stigge <stigge@antcom.de>2012-04-21 02:02:49 -0400
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2012-04-21 02:05:09 -0400
commit5cb727a86780fcac34de871cd12bea3f744d6be2 (patch)
tree509de157fe3afc5bc7cbab08540bba6f4f18a9ad /drivers/input
parentb5e9528bd19c6a3379aac468186f41d2bda48b04 (diff)
Input: lpc32xx_ts - add device tree support
This change implements device tree support for the LPC32xx SoC's touchscreen controller. Signed-off-by: Roland Stigge <stigge@antcom.de> Reviewed-by: Thierry Reding <thierry.reding@avionic-design.de> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/touchscreen/lpc32xx_ts.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/input/touchscreen/lpc32xx_ts.c b/drivers/input/touchscreen/lpc32xx_ts.c
index afcd0691ec67..e8fccbc452db 100644
--- a/drivers/input/touchscreen/lpc32xx_ts.c
+++ b/drivers/input/touchscreen/lpc32xx_ts.c
@@ -22,6 +22,7 @@
22#include <linux/clk.h> 22#include <linux/clk.h>
23#include <linux/io.h> 23#include <linux/io.h>
24#include <linux/slab.h> 24#include <linux/slab.h>
25#include <linux/of.h>
25 26
26/* 27/*
27 * Touchscreen controller register offsets 28 * Touchscreen controller register offsets
@@ -383,6 +384,14 @@ static const struct dev_pm_ops lpc32xx_ts_pm_ops = {
383#define LPC32XX_TS_PM_OPS NULL 384#define LPC32XX_TS_PM_OPS NULL
384#endif 385#endif
385 386
387#ifdef CONFIG_OF
388static struct of_device_id lpc32xx_tsc_of_match[] = {
389 { .compatible = "nxp,lpc32xx-tsc", },
390 { },
391};
392MODULE_DEVICE_TABLE(of, lpc32xx_tsc_of_match);
393#endif
394
386static struct platform_driver lpc32xx_ts_driver = { 395static struct platform_driver lpc32xx_ts_driver = {
387 .probe = lpc32xx_ts_probe, 396 .probe = lpc32xx_ts_probe,
388 .remove = __devexit_p(lpc32xx_ts_remove), 397 .remove = __devexit_p(lpc32xx_ts_remove),
@@ -390,6 +399,7 @@ static struct platform_driver lpc32xx_ts_driver = {
390 .name = MOD_NAME, 399 .name = MOD_NAME,
391 .owner = THIS_MODULE, 400 .owner = THIS_MODULE,
392 .pm = LPC32XX_TS_PM_OPS, 401 .pm = LPC32XX_TS_PM_OPS,
402 .of_match_table = of_match_ptr(lpc32xx_tsc_of_match),
393 }, 403 },
394}; 404};
395module_platform_driver(lpc32xx_ts_driver); 405module_platform_driver(lpc32xx_ts_driver);