diff options
author | 2024-06-20 00:00:57 +0800 | |
---|---|---|
committer | 2024-06-26 17:14:49 -0600 | |
commit | 543d67deb54ac71b8f6833693645885eb616387d (patch) | |
tree | 342d260ea40c76a123ce247f1b0fd1b43c0b8962 | |
parent | Documentation: English corrections in vmalloced kernel stacks (diff) | |
download | wireguard-linux-543d67deb54ac71b8f6833693645885eb616387d.tar.xz wireguard-linux-543d67deb54ac71b8f6833693645885eb616387d.zip |
docs: genericirq.rst: remove extra parenthesis in function definition
In the paragraph titled "Default flow implementations", the helper
function definition (simplified excerpt) for
noop(struct irq_data *data)
had an extraneous closing parenthesis. This commit removes the
unnecessary parenthesis, correcting the function definition.
Signed-off-by: Chih-Wei Chien <idoleat@taiker.tw>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20240619160057.128208-1-idoleat@taiker.tw
Diffstat (limited to '')
-rw-r--r-- | Documentation/core-api/genericirq.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/core-api/genericirq.rst b/Documentation/core-api/genericirq.rst index 4a460639ab1c..582bde9bf5a9 100644 --- a/Documentation/core-api/genericirq.rst +++ b/Documentation/core-api/genericirq.rst @@ -210,7 +210,7 @@ implemented (simplified excerpt):: } } - noop(struct irq_data *data)) + noop(struct irq_data *data) { } |