Input: tsc2005 - set up parent device
Set up SPI device as parent of the input device so it gets placed into proper place in sysfs tree. Tested-by: Aaro Koskinen <aaro.koskinen@nokia.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
parent
2721a89ac4
commit
b4b480a8d6
1 changed files with 1 additions and 0 deletions
|
@ -555,6 +555,7 @@ static int __devinit tsc2005_setup(struct tsc2005 *ts,
|
|||
snprintf(ts->phys, sizeof(ts->phys), "%s/input-ts",
|
||||
dev_name(&ts->spi->dev));
|
||||
ts->idev->phys = ts->phys;
|
||||
ts->idev->dev.parent = &ts->spi->dev;
|
||||
ts->idev->evbit[0] = BIT(EV_ABS) | BIT(EV_KEY);
|
||||
ts->idev->absbit[0] = BIT(ABS_X) | BIT(ABS_Y) | BIT(ABS_PRESSURE);
|
||||
ts->idev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
|
||||
|
|
Loading…
Reference in a new issue