aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/hid/hid-wiimote.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/hid/hid-wiimote.c b/drivers/hid/hid-wiimote.c
index 8a68bf515cad..d49f67c7a00c 100644
--- a/drivers/hid/hid-wiimote.c
+++ b/drivers/hid/hid-wiimote.c
@@ -239,6 +239,20 @@ static int wiimote_input_event(struct input_dev *dev, unsigned int type,
239 return 0; 239 return 0;
240} 240}
241 241
242static int wiimote_input_open(struct input_dev *dev)
243{
244 struct wiimote_data *wdata = input_get_drvdata(dev);
245
246 return hid_hw_open(wdata->hdev);
247}
248
249static void wiimote_input_close(struct input_dev *dev)
250{
251 struct wiimote_data *wdata = input_get_drvdata(dev);
252
253 hid_hw_close(wdata->hdev);
254}
255
242static void handler_keys(struct wiimote_data *wdata, const __u8 *payload) 256static void handler_keys(struct wiimote_data *wdata, const __u8 *payload)
243{ 257{
244 input_report_key(wdata->input, wiiproto_keymap[WIIPROTO_KEY_LEFT], 258 input_report_key(wdata->input, wiiproto_keymap[WIIPROTO_KEY_LEFT],
@@ -321,6 +335,8 @@ static struct wiimote_data *wiimote_create(struct hid_device *hdev)
321 335
322 input_set_drvdata(wdata->input, wdata); 336 input_set_drvdata(wdata->input, wdata);
323 wdata->input->event = wiimote_input_event; 337 wdata->input->event = wiimote_input_event;
338 wdata->input->open = wiimote_input_open;
339 wdata->input->close = wiimote_input_close;
324 wdata->input->dev.parent = &wdata->hdev->dev; 340 wdata->input->dev.parent = &wdata->hdev->dev;
325 wdata->input->id.bustype = wdata->hdev->bus; 341 wdata->input->id.bustype = wdata->hdev->bus;
326 wdata->input->id.vendor = wdata->hdev->vendor; 342 wdata->input->id.vendor = wdata->hdev->vendor;