diff options
| author | Chen Ni <nichen@iscas.ac.cn> | 2025-11-11 14:29:44 +0800 |
|---|---|---|
| committer | Linus Walleij <linus.walleij@linaro.org> | 2025-11-12 13:44:14 +0100 |
| commit | f2596d9fa19c0910319fe8eb1ccdf6348f0e02db (patch) | |
| tree | 34846f0b8e9d25c9a34630aafcd98dcb9a1597b0 | |
| parent | 3ffeb17a9a27a668efb6fbd074835e187910a9bb (diff) | |
pinctrl: airoha: convert comma to semicolon
Replace comma between expressions with semicolons.
Using a ',' in place of a ';' can have unintended side effects.
Although that is not the case here, it is seems best to use ';'
unless ',' is intended.
Found by inspection.
No functional change intended.
Compile tested only.
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
| -rw-r--r-- | drivers/pinctrl/mediatek/pinctrl-airoha.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/pinctrl/mediatek/pinctrl-airoha.c b/drivers/pinctrl/mediatek/pinctrl-airoha.c index bfcedc7f920b..983d96fd399a 100644 --- a/drivers/pinctrl/mediatek/pinctrl-airoha.c +++ b/drivers/pinctrl/mediatek/pinctrl-airoha.c @@ -2892,12 +2892,12 @@ static int airoha_pinctrl_probe(struct platform_device *pdev) /* Init pinctrl desc struct */ pinctrl->desc.name = KBUILD_MODNAME; - pinctrl->desc.owner = THIS_MODULE, - pinctrl->desc.pctlops = &airoha_pctlops, - pinctrl->desc.pmxops = &airoha_pmxops, - pinctrl->desc.confops = &airoha_confops, - pinctrl->desc.pins = data->pins, - pinctrl->desc.npins = data->num_pins, + pinctrl->desc.owner = THIS_MODULE; + pinctrl->desc.pctlops = &airoha_pctlops; + pinctrl->desc.pmxops = &airoha_pmxops; + pinctrl->desc.confops = &airoha_confops; + pinctrl->desc.pins = data->pins; + pinctrl->desc.npins = data->num_pins; err = devm_pinctrl_register_and_init(dev, &pinctrl->desc, pinctrl, &pinctrl->ctrl); |
