Loading drivers/hid/hid-core.c +1 −1 Original line number Diff line number Diff line Loading @@ -1066,7 +1066,7 @@ EXPORT_SYMBOL_GPL(hid_report_raw_event); * @type: HID report type (HID_*_REPORT) * @data: report contents * @size: size of data parameter * @interrupt: called from atomic? * @interrupt: distinguish between interrupt and control transfers * * This is data entry for lower layers. */ Loading drivers/hid/hid-twinhan.c +2 −2 Original line number Diff line number Diff line Loading @@ -132,12 +132,12 @@ static struct hid_driver twinhan_driver = { .input_mapping = twinhan_input_mapping, }; static int twinhan_init(void) static int __init twinhan_init(void) { return hid_register_driver(&twinhan_driver); } static void twinhan_exit(void) static void __exit twinhan_exit(void) { hid_unregister_driver(&twinhan_driver); } Loading drivers/hid/hidraw.c +2 −3 Original line number Diff line number Diff line Loading @@ -48,10 +48,9 @@ static ssize_t hidraw_read(struct file *file, char __user *buffer, size_t count, char *report; DECLARE_WAITQUEUE(wait, current); while (ret == 0) { mutex_lock(&list->read_mutex); while (ret == 0) { if (list->head == list->tail) { add_wait_queue(&list->hidraw->wait, &wait); set_current_state(TASK_INTERRUPTIBLE); Loading Loading
drivers/hid/hid-core.c +1 −1 Original line number Diff line number Diff line Loading @@ -1066,7 +1066,7 @@ EXPORT_SYMBOL_GPL(hid_report_raw_event); * @type: HID report type (HID_*_REPORT) * @data: report contents * @size: size of data parameter * @interrupt: called from atomic? * @interrupt: distinguish between interrupt and control transfers * * This is data entry for lower layers. */ Loading
drivers/hid/hid-twinhan.c +2 −2 Original line number Diff line number Diff line Loading @@ -132,12 +132,12 @@ static struct hid_driver twinhan_driver = { .input_mapping = twinhan_input_mapping, }; static int twinhan_init(void) static int __init twinhan_init(void) { return hid_register_driver(&twinhan_driver); } static void twinhan_exit(void) static void __exit twinhan_exit(void) { hid_unregister_driver(&twinhan_driver); } Loading
drivers/hid/hidraw.c +2 −3 Original line number Diff line number Diff line Loading @@ -48,10 +48,9 @@ static ssize_t hidraw_read(struct file *file, char __user *buffer, size_t count, char *report; DECLARE_WAITQUEUE(wait, current); while (ret == 0) { mutex_lock(&list->read_mutex); while (ret == 0) { if (list->head == list->tail) { add_wait_queue(&list->hidraw->wait, &wait); set_current_state(TASK_INTERRUPTIBLE); Loading