diff options
author | Chen Ni <nichen@iscas.ac.cn> | 2024-09-03 10:50:10 +0800 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.com> | 2024-09-03 14:00:05 +0200 |
commit | d11cfda966c18d8bf4f0e3f6d82a09c0771c955a (patch) | |
tree | aaad8b4f8124cf2643ca5c08e72d1dbe24a7a29e /drivers | |
parent | de07af0ab02edcd4665deafc7373c5b13fb82db1 (diff) |
HID: hid-sensor-custom: Convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/hid/hid-sensor-custom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-sensor-custom.c b/drivers/hid/hid-sensor-custom.c index bd400f6b472b..66f0675df24b 100644 --- a/drivers/hid/hid-sensor-custom.c +++ b/drivers/hid/hid-sensor-custom.c @@ -732,7 +732,7 @@ static int hid_sensor_custom_dev_if_add(struct hid_sensor_custom *sensor_inst) sensor_inst->custom_dev.minor = MISC_DYNAMIC_MINOR; sensor_inst->custom_dev.name = dev_name(&sensor_inst->pdev->dev); - sensor_inst->custom_dev.fops = &hid_sensor_custom_fops, + sensor_inst->custom_dev.fops = &hid_sensor_custom_fops; ret = misc_register(&sensor_inst->custom_dev); if (ret) { kfifo_free(&sensor_inst->data_fifo); |