mirror of https://gitee.com/openkylin/linux.git
char: ipmi: convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com> Message-Id: <20201216132615.15529-1-zhengyongjun3@huawei.com> Signed-off-by: Corey Minyard <cminyard@mvista.com>
This commit is contained in:
parent
368ffd9adc
commit
fad0319cac
|
@ -462,9 +462,9 @@ static int bt_bmc_probe(struct platform_device *pdev)
|
|||
mutex_init(&bt_bmc->mutex);
|
||||
init_waitqueue_head(&bt_bmc->queue);
|
||||
|
||||
bt_bmc->miscdev.minor = MISC_DYNAMIC_MINOR,
|
||||
bt_bmc->miscdev.name = DEVICE_NAME,
|
||||
bt_bmc->miscdev.fops = &bt_bmc_fops,
|
||||
bt_bmc->miscdev.minor = MISC_DYNAMIC_MINOR;
|
||||
bt_bmc->miscdev.name = DEVICE_NAME;
|
||||
bt_bmc->miscdev.fops = &bt_bmc_fops;
|
||||
bt_bmc->miscdev.parent = dev;
|
||||
rc = misc_register(&bt_bmc->miscdev);
|
||||
if (rc) {
|
||||
|
|
Loading…
Reference in New Issue