Commit fad0319c authored by Zheng Yongjun's avatar Zheng Yongjun Committed by Corey Minyard

char: ipmi: convert comma to semicolon

Replace a comma between expression statements by a semicolon.
Signed-off-by: default avatarZheng Yongjun <zhengyongjun3@huawei.com>
Message-Id: <20201216132615.15529-1-zhengyongjun3@huawei.com>
Signed-off-by: default avatarCorey Minyard <cminyard@mvista.com>
parent 368ffd9a
...@@ -462,9 +462,9 @@ static int bt_bmc_probe(struct platform_device *pdev) ...@@ -462,9 +462,9 @@ static int bt_bmc_probe(struct platform_device *pdev)
mutex_init(&bt_bmc->mutex); mutex_init(&bt_bmc->mutex);
init_waitqueue_head(&bt_bmc->queue); init_waitqueue_head(&bt_bmc->queue);
bt_bmc->miscdev.minor = MISC_DYNAMIC_MINOR, bt_bmc->miscdev.minor = MISC_DYNAMIC_MINOR;
bt_bmc->miscdev.name = DEVICE_NAME, bt_bmc->miscdev.name = DEVICE_NAME;
bt_bmc->miscdev.fops = &bt_bmc_fops, bt_bmc->miscdev.fops = &bt_bmc_fops;
bt_bmc->miscdev.parent = dev; bt_bmc->miscdev.parent = dev;
rc = misc_register(&bt_bmc->miscdev); rc = misc_register(&bt_bmc->miscdev);
if (rc) { if (rc) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment