projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
368ffd9
)
char: ipmi: convert comma to semicolon
author
Zheng Yongjun
<zhengyongjun3@huawei.com>
Wed, 16 Dec 2020 13:26:15 +0000
(21:26 +0800)
committer
Corey Minyard
<cminyard@mvista.com>
Wed, 16 Dec 2020 13:54:54 +0000
(07:54 -0600)
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>
drivers/char/ipmi/bt-bmc.c
patch
|
blob
|
history
diff --git
a/drivers/char/ipmi/bt-bmc.c
b/drivers/char/ipmi/bt-bmc.c
index a395e2e70dc5d3efa9859bd4fbf63096ee906e19..6e3d247b55d1550824de1f5bca5c61575a51880f 100644
(file)
--- a/
drivers/char/ipmi/bt-bmc.c
+++ b/
drivers/char/ipmi/bt-bmc.c
@@
-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) {