diff options
author | Stephen Boyd <sboyd@kernel.org> | 2025-01-06 16:08:39 -0800 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2025-01-06 16:08:39 -0800 |
commit | e9f7da0776fb4f64fa2a17ece8b2205f8e9cc1b2 (patch) | |
tree | 148c2c4ad33dab2b01a01872e0d73db4a11cf710 | |
parent | 40384c840ea1944d7c5a392e8975ed088ecf0b37 (diff) | |
parent | ee46245564a8d74ae96394269f173f8306669c04 (diff) |
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()
-rw-r--r-- | drivers/clk/socfpga/clk-pll-a10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/socfpga/clk-pll-a10.c b/drivers/clk/socfpga/clk-pll-a10.c index b028f25c658a..62eed964c3d0 100644 --- a/drivers/clk/socfpga/clk-pll-a10.c +++ b/drivers/clk/socfpga/clk-pll-a10.c @@ -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 */ |