]> Git Repo - J-linux.git/commitdiff
HID: hid-sensor-custom: Convert comma to semicolon
authorChen Ni <[email protected]>
Tue, 3 Sep 2024 02:50:10 +0000 (10:50 +0800)
committerJiri Kosina <[email protected]>
Tue, 3 Sep 2024 12:00:05 +0000 (14:00 +0200)
Replace a comma between expression statements by a semicolon.

Signed-off-by: Chen Ni <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
drivers/hid/hid-sensor-custom.c

index bd400f6b472b8632b450990f6785a055e0c83f16..66f0675df24bdb442b4b187a3b515f971226e9dd 100644 (file)
@@ -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);
This page took 0.04999 seconds and 4 git commands to generate.