hc
2024-10-12 a5969cabbb4660eab42b6ef0412cbbd1200cf14d
kernel/Documentation/driver-api/clk.rst
....@@ -175,9 +175,9 @@
175175 To take advantage of your data you'll need to support valid operations
176176 for your clk::
177177
178
- struct clk_ops clk_foo_ops {
179
- .enable = &clk_foo_enable;
180
- .disable = &clk_foo_disable;
178
+ struct clk_ops clk_foo_ops = {
179
+ .enable = &clk_foo_enable,
180
+ .disable = &clk_foo_disable,
181181 };
182182
183183 Implement the above functions using container_of::