Skip to content

Commit d11cfda

Browse files
Chen NiJiri Kosina
authored andcommitted
HID: hid-sensor-custom: Convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni <[email protected]> Signed-off-by: Jiri Kosina <[email protected]>
1 parent de07af0 commit d11cfda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/hid/hid-sensor-custom.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ static int hid_sensor_custom_dev_if_add(struct hid_sensor_custom *sensor_inst)
732732

733733
sensor_inst->custom_dev.minor = MISC_DYNAMIC_MINOR;
734734
sensor_inst->custom_dev.name = dev_name(&sensor_inst->pdev->dev);
735-
sensor_inst->custom_dev.fops = &hid_sensor_custom_fops,
735+
sensor_inst->custom_dev.fops = &hid_sensor_custom_fops;
736736
ret = misc_register(&sensor_inst->custom_dev);
737737
if (ret) {
738738
kfifo_free(&sensor_inst->data_fifo);

0 commit comments

Comments
 (0)