forked from ~ljy/RK356X_SDK_RELEASE

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