diff options
Diffstat (limited to 'drivers/input/joystick/cobra.c')
| -rw-r--r-- | drivers/input/joystick/cobra.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/input/joystick/cobra.c b/drivers/input/joystick/cobra.c index 034ec39c251d..207536377fa8 100644 --- a/drivers/input/joystick/cobra.c +++ b/drivers/input/joystick/cobra.c | |||
| @@ -142,7 +142,7 @@ static void cobra_poll(struct gameport *gameport) | |||
| 142 | 142 | ||
| 143 | static int cobra_open(struct input_dev *dev) | 143 | static int cobra_open(struct input_dev *dev) |
| 144 | { | 144 | { |
| 145 | struct cobra *cobra = dev->private; | 145 | struct cobra *cobra = input_get_drvdata(dev); |
| 146 | 146 | ||
| 147 | gameport_start_polling(cobra->gameport); | 147 | gameport_start_polling(cobra->gameport); |
| 148 | return 0; | 148 | return 0; |
| @@ -150,7 +150,7 @@ static int cobra_open(struct input_dev *dev) | |||
| 150 | 150 | ||
| 151 | static void cobra_close(struct input_dev *dev) | 151 | static void cobra_close(struct input_dev *dev) |
| 152 | { | 152 | { |
| 153 | struct cobra *cobra = dev->private; | 153 | struct cobra *cobra = input_get_drvdata(dev); |
| 154 | 154 | ||
| 155 | gameport_stop_polling(cobra->gameport); | 155 | gameport_stop_polling(cobra->gameport); |
| 156 | } | 156 | } |
| @@ -212,7 +212,8 @@ static int cobra_connect(struct gameport *gameport, struct gameport_driver *drv) | |||
| 212 | input_dev->id.product = 0x0008; | 212 | input_dev->id.product = 0x0008; |
| 213 | input_dev->id.version = 0x0100; | 213 | input_dev->id.version = 0x0100; |
| 214 | input_dev->cdev.dev = &gameport->dev; | 214 | input_dev->cdev.dev = &gameport->dev; |
| 215 | input_dev->private = cobra; | 215 | |
| 216 | input_set_drvdata(input_dev, cobra); | ||
| 216 | 217 | ||
| 217 | input_dev->open = cobra_open; | 218 | input_dev->open = cobra_open; |
| 218 | input_dev->close = cobra_close; | 219 | input_dev->close = cobra_close; |
