diff options
author | Axel Lin <axel.lin@gmail.com> | 2010-09-02 21:26:35 +0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-09-03 07:12:07 +0400 |
commit | 98417884477eb3c2d9c19a69c070f7f347af6d76 (patch) | |
tree | 664da56ac68fff34aaf089703c349271c6a64c45 /drivers/input/touchscreen/tps6507x-ts.c | |
parent | ec1496b39576a3374e5461caac17b83b3275dbb7 (diff) | |
download | linux-98417884477eb3c2d9c19a69c070f7f347af6d76.tar.xz |
Input: tps6507x-ts - add missing call to platform_set_drvdata()
We call platform_get_drvdata() in tps6507x_ts_remove(),
thus we should call platform_set_drvdata() in tps6507x_ts_probe().
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/touchscreen/tps6507x-ts.c')
-rw-r--r-- | drivers/input/touchscreen/tps6507x-ts.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/touchscreen/tps6507x-ts.c b/drivers/input/touchscreen/tps6507x-ts.c index a644d18c04dc..728620974dd8 100644 --- a/drivers/input/touchscreen/tps6507x-ts.c +++ b/drivers/input/touchscreen/tps6507x-ts.c @@ -335,6 +335,7 @@ static int tps6507x_ts_probe(struct platform_device *pdev) dev_err(tsc->dev, "schedule failed"); goto err2; } + platform_set_drvdata(pdev, tps6507x_dev); return 0; |