Commit 889aa9ca authored by Luca Ceresoli's avatar Luca Ceresoli Committed by Jonathan Corbet

docs: clk: fix struct syntax

The clk_foo_ops struct example has syntax errors. Fix it so it can be
copy-pasted and used more easily.
Signed-off-by: default avatarLuca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent b1663d7e
...@@ -175,9 +175,9 @@ the following:: ...@@ -175,9 +175,9 @@ the following::
To take advantage of your data you'll need to support valid operations To take advantage of your data you'll need to support valid operations
for your clk:: for your clk::
struct clk_ops clk_foo_ops { struct clk_ops clk_foo_ops = {
.enable = &clk_foo_enable; .enable = &clk_foo_enable,
.disable = &clk_foo_disable; .disable = &clk_foo_disable,
}; };
Implement the above functions using container_of:: Implement the above functions using container_of::
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment