diff options
author | Dmitry Torokhov <dtor@insightbb.com> | 2007-04-12 01:35:26 -0400 |
---|---|---|
committer | Dmitry Torokhov <dtor@insightbb.com> | 2007-04-12 01:35:26 -0400 |
commit | 935e658e89678a7e3427b90cd7a1c86025d95bfe (patch) | |
tree | 002d0f937e92cd074d5f1a9023fe36a9dda7ba65 /drivers/input/joystick/analog.c | |
parent | a5394fb075a80212765ee3cd4a7842bdccf5fc0a (diff) |
Input: joysticks - 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/joystick/analog.c')
-rw-r--r-- | drivers/input/joystick/analog.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/joystick/analog.c b/drivers/input/joystick/analog.c index 7244e296bb26..1c1afb5d4684 100644 --- a/drivers/input/joystick/analog.c +++ b/drivers/input/joystick/analog.c | |||
@@ -449,6 +449,7 @@ static int analog_init_device(struct analog_port *port, struct analog *analog, i | |||
449 | input_dev->id.vendor = GAMEPORT_ID_VENDOR_ANALOG; | 449 | input_dev->id.vendor = GAMEPORT_ID_VENDOR_ANALOG; |
450 | input_dev->id.product = analog->mask >> 4; | 450 | input_dev->id.product = analog->mask >> 4; |
451 | input_dev->id.version = 0x0100; | 451 | input_dev->id.version = 0x0100; |
452 | input_dev->dev.parent = &port->gameport->dev; | ||
452 | 453 | ||
453 | input_set_drvdata(input_dev, port); | 454 | input_set_drvdata(input_dev, port); |
454 | 455 | ||