mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 18:13:41 +02:00
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>
This commit is contained in:
parent
3ffeb17a9a
commit
f2596d9fa1
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user