forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-10 9999e48639b3cecb08ffb37358bcba3b48161b29
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::