mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
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>
This commit is contained in:
parent
de07af0ab0
commit
d11cfda966
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue