diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-07-18 20:09:37 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-07-18 20:10:27 -0400 |
commit | 2c204109ec1018f72114c7f19132a1109a3f0653 (patch) | |
tree | 5fa55c78e21236c05d81eb9094a03e0ff4a4231c /drivers/input | |
parent | d448303a77d8925fd06e7b2837bd1826e340bb02 (diff) |
Input: cy8ctmg110_ts - set reset_pin and irq_pin from platform data
The implementation in cy8ctmg110_probe() does not properly set reset_pin
and irq_pin from platform data. Let's fix it.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/touchscreen/cy8ctmg110_ts.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/input/touchscreen/cy8ctmg110_ts.c b/drivers/input/touchscreen/cy8ctmg110_ts.c index ecdaae5f06c9..d8815c5d54ad 100644 --- a/drivers/input/touchscreen/cy8ctmg110_ts.c +++ b/drivers/input/touchscreen/cy8ctmg110_ts.c | |||
@@ -193,6 +193,8 @@ static int __devinit cy8ctmg110_probe(struct i2c_client *client, | |||
193 | 193 | ||
194 | ts->client = client; | 194 | ts->client = client; |
195 | ts->input = input_dev; | 195 | ts->input = input_dev; |
196 | ts->reset_pin = pdata->reset_pin; | ||
197 | ts->irq_pin = pdata->irq_pin; | ||
196 | 198 | ||
197 | snprintf(ts->phys, sizeof(ts->phys), | 199 | snprintf(ts->phys, sizeof(ts->phys), |
198 | "%s/input0", dev_name(&client->dev)); | 200 | "%s/input0", dev_name(&client->dev)); |