diff options
author | Stephen Boyd <sboyd@kernel.org> | 2023-04-25 11:52:39 -0700 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2023-04-25 11:52:39 -0700 |
commit | a9863979fbc25838bbe7c5badf538cedfc802f60 (patch) | |
tree | 125367d7f4ce04b181e1781bf95ac36a71dbcb71 /include/linux/clk-provider.h | |
parent | c19c6c7b44c69faa7a18ef79e758f580b144fd8f (diff) | |
parent | 80e9552e843b2ec7d813cfdb71f84f738df0d044 (diff) | |
download | linux-a9863979fbc25838bbe7c5badf538cedfc802f60.tar.gz linux-a9863979fbc25838bbe7c5badf538cedfc802f60.tar.bz2 linux-a9863979fbc25838bbe7c5badf538cedfc802f60.zip |
Merge branch 'clk-imx' into clk-next
* clk-imx: (25 commits)
clk: imx: imx8ulp: update clk flag for system critical clock
clk: imx: imx8ulp: Add tpm5 clock as critical gate clock
clk: imx: imx8ulp: keep MU0_B clock enabled always
clk: imx: imx8ulp: Add divider closest support to get more accurate clock rate
clk: imx: imx8ulp: Fix XBAR_DIVBUS and AD_SLOW clock parents
clk: imx: imx93: Add nic and A55 clk
dt-bindings: clock: imx93: add NIC, A55 and ARM PLL CLK
clk: imx: imx93: add mcore_booted module paratemter
clk: imx: fracn-gppll: Add 300MHz freq support for imx9
clk: imx: fracn-gppll: support integer pll
clk: imx: fracn-gppll: disable hardware select control
clk: imx: fracn-gppll: fix the rate table
clk: imx: imx8mp: change the 'nand_usdhc_bus' clock to non-critical
clk: imx: imx8mp: Add LDB root clock
dt-bindings: clock: imx8mp: Add LDB clock entry
clk: imx: imx8mp: correct DISP2 pixel clock type
clk: imx: drop duplicated macro
clk: imx: clk-gpr-mux: Provide clock name in error message
clk: imx: Let IMX8MN_CLK_DISP_PIXEL set parent rate
clk: imx8mm: Let IMX8MM_CLK_LCDIF_PIXEL set parent rate
...
Diffstat (limited to 'include/linux/clk-provider.h')
-rw-r--r-- | include/linux/clk-provider.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index 3f2ee3706dda..0aa5c5a2448a 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h @@ -622,7 +622,7 @@ struct clk *clk_register_gate(struct device *dev, const char *name, */ #define devm_clk_hw_register_gate_parent_data(dev, name, parent_data, flags, \ reg, bit_idx, clk_gate_flags, \ - lock) \ + lock) \ __devm_clk_hw_register_gate((dev), NULL, (name), NULL, NULL, \ (parent_data), (flags), (reg), (bit_idx), \ (clk_gate_flags), (lock)) |