From 543d67deb54ac71b8f6833693645885eb616387d Mon Sep 17 00:00:00 2001 From: Chih-Wei Chien Date: Thu, 20 Jun 2024 00:00:57 +0800 Subject: [PATCH] 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 --- Documentation/core-api/genericirq.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { } -- 2.50.1