mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
spi: meson-spicc: convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Fixes: 3e0cf4d3fc
("spi: meson-spicc: add a linear clock divider support")
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patch.msgid.link/20240716091151.1434450-1-nichen@iscas.ac.cn
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
0f245463b0
commit
dc58d15ae7
@ -655,8 +655,8 @@ static int meson_spicc_pow2_clk_init(struct meson_spicc_device *spicc)
|
||||
}
|
||||
init.num_parents = 1;
|
||||
|
||||
pow2_fixed_div->mult = 1,
|
||||
pow2_fixed_div->div = 4,
|
||||
pow2_fixed_div->mult = 1;
|
||||
pow2_fixed_div->div = 4;
|
||||
pow2_fixed_div->hw.init = &init;
|
||||
|
||||
clk = devm_clk_register(dev, &pow2_fixed_div->hw);
|
||||
@ -674,9 +674,9 @@ static int meson_spicc_pow2_clk_init(struct meson_spicc_device *spicc)
|
||||
parent_data[0].hw = &pow2_fixed_div->hw;
|
||||
init.num_parents = 1;
|
||||
|
||||
spicc->pow2_div.shift = 16,
|
||||
spicc->pow2_div.width = 3,
|
||||
spicc->pow2_div.flags = CLK_DIVIDER_POWER_OF_TWO,
|
||||
spicc->pow2_div.shift = 16;
|
||||
spicc->pow2_div.width = 3;
|
||||
spicc->pow2_div.flags = CLK_DIVIDER_POWER_OF_TWO;
|
||||
spicc->pow2_div.reg = spicc->base + SPICC_CONREG;
|
||||
spicc->pow2_div.hw.init = &init;
|
||||
|
||||
@ -721,8 +721,8 @@ static int meson_spicc_enh_clk_init(struct meson_spicc_device *spicc)
|
||||
}
|
||||
init.num_parents = 1;
|
||||
|
||||
enh_fixed_div->mult = 1,
|
||||
enh_fixed_div->div = 2,
|
||||
enh_fixed_div->mult = 1;
|
||||
enh_fixed_div->div = 2;
|
||||
enh_fixed_div->hw.init = &init;
|
||||
|
||||
clk = devm_clk_register(dev, &enh_fixed_div->hw);
|
||||
@ -740,8 +740,8 @@ static int meson_spicc_enh_clk_init(struct meson_spicc_device *spicc)
|
||||
parent_data[0].hw = &enh_fixed_div->hw;
|
||||
init.num_parents = 1;
|
||||
|
||||
enh_div->shift = 16,
|
||||
enh_div->width = 8,
|
||||
enh_div->shift = 16;
|
||||
enh_div->width = 8;
|
||||
enh_div->reg = spicc->base + SPICC_ENH_CTL0;
|
||||
enh_div->hw.init = &init;
|
||||
|
||||
@ -761,8 +761,8 @@ static int meson_spicc_enh_clk_init(struct meson_spicc_device *spicc)
|
||||
init.num_parents = 2;
|
||||
init.flags = CLK_SET_RATE_PARENT;
|
||||
|
||||
mux->mask = 0x1,
|
||||
mux->shift = 24,
|
||||
mux->mask = 0x1;
|
||||
mux->shift = 24;
|
||||
mux->reg = spicc->base + SPICC_ENH_CTL0;
|
||||
mux->hw.init = &init;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user