'\" t .\" Title: struct clk_notifier .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 .\" Date: March 2017 .\" Manual: Clock Framework .\" Source: Kernel Hackers Manual 4.10.7 .\" Language: English .\" .TH "STRUCT CLK_NOTIFIER" "9" "March 2017" "Kernel Hackers Manual 4\&.10\&" "Clock Framework" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .\" http://bugs.debian.org/507673 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .\" ----------------------------------------------------------------- .\" * MAIN CONTENT STARTS HERE * .\" ----------------------------------------------------------------- .SH "NAME" struct_clk_notifier \- associate a clk with a notifier .SH "SYNOPSIS" .sp .nf struct clk_notifier { struct clk * clk; struct srcu_notifier_head notifier_head; struct list_head node; }; .fi .SH "MEMBERS" .PP clk .RS 4 struct clk * to associate the notifier with .RE .PP notifier_head .RS 4 a blocking_notifier_head for this clk .RE .PP node .RS 4 linked list pointers .RE .SH "DESCRIPTION" .PP A list of struct clk_notifier is maintained by the notifier code\&. An entry is created whenever code registers the first notifier on a particular \fIclk\fR\&. Future notifiers on that \fIclk\fR are added to the \fInotifier_head\fR\&. .SH "COPYRIGHT" .br