projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
abd4107
)
mfd: atc260x: Convert a bunch of commas to semicolons
author
Chen Ni
<nichen@iscas.ac.cn>
Mon, 2 Sep 2024 08:50:19 +0000
(16:50 +0800)
committer
Lee Jones
<lee@kernel.org>
Mon, 23 Sep 2024 15:20:55 +0000
(16:20 +0100)
Replace a comma between expression statements by a semicolon.
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com>
Link:
https://lore.kernel.org/r/20240902085019.4111445-1-nichen@iscas.ac.cn
Signed-off-by: Lee Jones <lee@kernel.org>
drivers/mfd/atc260x-core.c
patch
|
blob
|
history
diff --git
a/drivers/mfd/atc260x-core.c
b/drivers/mfd/atc260x-core.c
index
67473b5
..
6b6d5f1
100644
(file)
--- a/
drivers/mfd/atc260x-core.c
+++ b/
drivers/mfd/atc260x-core.c
@@
-235,8
+235,8
@@
int atc260x_match_device(struct atc260x *atc260x, struct regmap_config *regmap_c
mutex_init(atc260x->regmap_mutex);
- regmap_cfg->lock = regmap_lock_mutex
,
- regmap_cfg->unlock = regmap_unlock_mutex
,
+ regmap_cfg->lock = regmap_lock_mutex
;
+ regmap_cfg->unlock = regmap_unlock_mutex
;
regmap_cfg->lock_arg = atc260x->regmap_mutex;
return 0;