]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Input: tsc2005 - set up bus type in input device
authorDmitry Torokhov <dmitry.torokhov@gmail.com>
Thu, 17 Mar 2011 05:09:32 +0000 (22:09 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Thu, 17 Mar 2011 06:28:40 +0000 (23:28 -0700)
We know what bus we are residing on (SPI) so let's make this data
available to the users.

Tested-by: Aaro Koskinen <aaro.koskinen@nokia.com>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
drivers/input/touchscreen/tsc2005.c

index e294648a97c9593a9d037fddc2cf28604443a48c..09cbcb0b19fea51d393e1c8cda2fd6b6abe7ab6b 100644 (file)
@@ -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->id.bustype = BUS_SPI;
        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);