]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
docs: genericirq.rst: remove extra parenthesis in function definition
authorChih-Wei Chien <idoleat@taiker.tw>
Wed, 19 Jun 2024 16:00:57 +0000 (00:00 +0800)
committerJonathan Corbet <corbet@lwn.net>
Wed, 26 Jun 2024 23:14:49 +0000 (17:14 -0600)
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
Documentation/core-api/genericirq.rst

index 4a460639ab1cec03ae2cd6ae03dcb4ce0e0dbaa4..582bde9bf5a92b1068d53e4d9ee87cb1490f5d47 100644 (file)
@@ -210,7 +210,7 @@ implemented (simplified excerpt)::
         }
     }
 
-    noop(struct irq_data *data))
+    noop(struct irq_data *data)
     {
     }