Skip to content

Commit

Permalink
Merge tag 'socfpga_clk_update_for_v6.14' of git://git.kernel.org/pub/…
Browse files Browse the repository at this point in the history
…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()
  • Loading branch information
Stephen Boyd committed Jan 7, 2025
2 parents 40384c8 + ee46245 commit e9f7da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/clk/socfpga/clk-pll-a10.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ static unsigned long clk_pll_recalc_rate(struct clk_hw *hwclk,
unsigned long parent_rate)
{
struct socfpga_pll *socfpgaclk = to_socfpga_clk(hwclk);
unsigned long divf, divq, reg;
u32 divf, divq, reg;
unsigned long long vco_freq;

/* read VCO1 reg for numerator and denominator */
Expand Down

0 comments on commit e9f7da0

Please sign in to comment.