diff options
author | Dmitry Torokhov <dtor@insightbb.com> | 2007-04-12 01:35:14 -0400 |
---|---|---|
committer | Dmitry Torokhov <dtor@insightbb.com> | 2007-04-12 01:35:14 -0400 |
commit | a5394fb075a80212765ee3cd4a7842bdccf5fc0a (patch) | |
tree | 96656ef4da1d5602c3c6b843b070e0ffd41e6709 /drivers/input/touchscreen/h3600_ts_input.c | |
parent | 28aa7f1c8178db8b277a6e11325ef09adea8ac46 (diff) | |
download | blackbird-op-linux-a5394fb075a80212765ee3cd4a7842bdccf5fc0a.tar.gz blackbird-op-linux-a5394fb075a80212765ee3cd4a7842bdccf5fc0a.zip |
Input: touchscreens - switch to using input_dev->dev.parent
In preparation for struct class_device -> struct device input
core conversion, switch to using input_dev->dev.parent when
specifying device position in sysfs tree.
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input/touchscreen/h3600_ts_input.c')
-rw-r--r-- | drivers/input/touchscreen/h3600_ts_input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/h3600_ts_input.c b/drivers/input/touchscreen/h3600_ts_input.c index 2b01acec326c..09ed7803cb8f 100644 --- a/drivers/input/touchscreen/h3600_ts_input.c +++ b/drivers/input/touchscreen/h3600_ts_input.c @@ -367,7 +367,7 @@ static int h3600ts_connect(struct serio *serio, struct serio_driver *drv) input_dev->id.vendor = SERIO_H3600; input_dev->id.product = 0x0666; /* FIXME !!! We can ask the hardware */ input_dev->id.version = 0x0100; - input_dev->cdev.dev = &serio->dev; + input_dev->dev.parent = &serio->dev; input_set_drvdata(input_dev, ts); |