1DEVM_CLK_PUT(9) Clock Framework DEVM_CLK_PUT(9)
2
3
4
6 devm_clk_put - "free" a managed clock source
7
9 void devm_clk_put(struct device * dev, struct clk * clk);
10
12 dev
13 device used to acuqire the clock
14
15 clk
16 clock source acquired with devm_clk_get
17
19 drivers must ensure that all clk_enable calls made on this clock source
20 are balanced by clk_disable calls prior to calling this function.
21
22 clk_put should not be called from within interrupt context.
23
25Kernel Hackers Manual 3.10 June 2019 DEVM_CLK_PUT(9)