Skip to content

Commit e9f7da0

Browse files
committed
Merge tag 'socfpga_clk_update_for_v6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux into clk-socfpga
Pull a SoCFPGA clk driver update from Dinh Nguyen: - Optimize local variables in clk_pll_recalc_rate() for Arria10 * tag 'socfpga_clk_update_for_v6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux: clk: socfpga: arria10: Optimize local variables in clk_pll_recalc_rate()
2 parents 40384c8 + ee46245 commit e9f7da0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clk/socfpga/clk-pll-a10.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ static unsigned long clk_pll_recalc_rate(struct clk_hw *hwclk,
3535
unsigned long parent_rate)
3636
{
3737
struct socfpga_pll *socfpgaclk = to_socfpga_clk(hwclk);
38-
unsigned long divf, divq, reg;
38+
u32 divf, divq, reg;
3939
unsigned long long vco_freq;
4040

4141
/* read VCO1 reg for numerator and denominator */

0 commit comments

Comments
 (0)