From: Chih-Wei Chien Date: Wed, 19 Jun 2024 16:00:57 +0000 (+0800) Subject: docs: genericirq.rst: remove extra parenthesis in function definition X-Git-Tag: v6.11-rc1~124^2~23 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=543d67deb54ac71b8f6833693645885eb616387d;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Jonathan Corbet Link: https://lore.kernel.org/r/20240619160057.128208-1-idoleat@taiker.tw --- diff --git a/Documentation/core-api/genericirq.rst b/Documentation/core-api/genericirq.rst index 4a460639ab1ce..582bde9bf5a92 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) { }