diff options
author | Chih-Wei Chien <[email protected]> | 2024-06-20 00:00:57 +0800 |
---|---|---|
committer | Jonathan Corbet <[email protected]> | 2024-06-26 17:14:49 -0600 |
commit | 543d67deb54ac71b8f6833693645885eb616387d (patch) | |
tree | 342d260ea40c76a123ce247f1b0fd1b43c0b8962 | |
parent | 27a0781a31ef8ed5c98a6b59db4349b0f8a57a41 (diff) |
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 <[email protected]>
Signed-off-by: Jonathan Corbet <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-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) { } |