1STRUCT CLK_NOTIFIER(9) Clock Framework STRUCT CLK_NOTIFIER(9)
2
3
4
6 struct_clk_notifier - associate a clk with a notifier
7
9 struct clk_notifier {
10 struct clk * clk;
11 struct srcu_notifier_head notifier_head;
12 struct list_head node;
13 };
14
16 clk
17 struct clk * to associate the notifier with
18
19 notifier_head
20 a blocking_notifier_head for this clk
21
22 node
23 linked list pointers
24
26 A list of struct clk_notifier is maintained by the notifier code. An
27 entry is created whenever code registers the first notifier on a
28 particular clk. Future notifiers on that clk are added to the
29 notifier_head.
30
32Kernel Hackers Manual 3.10 June 2019 STRUCT CLK_NOTIFIER(9)