1CLK_DISABLE(9) Clock Framework CLK_DISABLE(9)
2
3
4
6 clk_disable - inform the system when the clock source is no longer
7 required.
8
10 void clk_disable(struct clk * clk);
11
13 clk
14 clock source
15
17 Inform the system that a clock source is no longer required by a driver
18 and may be shut down.
19
20 May be called from atomic contexts.
21
23 if the clock source is shared between multiple drivers, clk_enable
24 calls must be balanced by the same number of clk_disable calls for the
25 clock source to be disabled.
26
28Kernel Hackers Manual 3.10 June 2019 CLK_DISABLE(9)