forked from torvalds/linux
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
clk: add sys node to disable unused clk
The normal sequence is that the clock provider registers clk to the clock framework, and the clock framework manages the clock resources of the system. Clk consumers obtain clk through the clock framework API, enable and disable clk. Not all clk registered through the clock provider will be used by the clock consumer, so the clock framework has a function late_initcall_sync(clk_disable_unused); disables the unused clk. Now we modularize the clock provider and some consumers, which will cause late_initcall_sync(clk_disable_unused); cannot work properly, so increase the sys node. Signed-off-by: Zhipeng Wang <zhipeng.wang_1@nxp.com>
- Loading branch information
1 parent
765f4fa
commit 166d814a2157788c7f7c7224b08ccdca8aaed7a0
Showing
1 changed file
with
70 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters