diff options
Diffstat (limited to 'src/tmtx')
| -rw-r--r-- | src/tmtx/hid-tmtx.c | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/tmtx/hid-tmtx.c b/src/tmtx/hid-tmtx.c index f1f1b32..857886c 100644 --- a/src/tmtx/hid-tmtx.c +++ b/src/tmtx/hid-tmtx.c @@ -196,15 +196,17 @@ static int tx_send_open(struct t300rs_device_entry *tx) return 0; } -static void tx_open(void *data, int open_mode) +static int tx_open(void *data, int open_mode) { struct t300rs_device_entry *tx = data; if (!tx) - return; + return -ENODEV; if (open_mode) tx_send_open(tx); + + return tx->open(tx->input_dev); } static int tx_send_close(struct t300rs_device_entry *tx) @@ -223,15 +225,18 @@ static int tx_send_close(struct t300rs_device_entry *tx) return 0; } -static void tx_close(void *data, int open_mode) +static int tx_close(void *data, int open_mode) { struct t300rs_device_entry *tx = data; if (!tx) - return; + return -ENODEV; if (open_mode) tx_send_close(tx); + + tx->close(tx->input_dev); + return 0; } static int tx_wheel_init(struct tmff2_device_entry *tmff2, int open_mode) @@ -262,6 +267,9 @@ static int tx_wheel_init(struct tmff2_device_entry *tmff2, int open_mode) tx->report = list_entry(report_list->next, struct hid_report, list); tx->ff_field = tx->report->field[0]; + tx->open = tx->input_dev->open; + tx->close = tx->input_dev->close; + if ((ret = tx_interrupts(tx))) goto interrupt_err; |
