* [PATCH] docs: genericirq.rst: remove extra parenthesis in function definition
@ 2024-06-19 16:00 Chih-Wei Chien
2024-06-26 23:15 ` Jonathan Corbet
0 siblings, 1 reply; 2+ messages in thread
From: Chih-Wei Chien @ 2024-06-19 16:00 UTC (permalink / raw)
To: corbet; +Cc: pstanner, linux-doc, linux-kernel, Chih-Wei Chien
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>
---
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 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)
{
}
--
2.45.2
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] docs: genericirq.rst: remove extra parenthesis in function definition
2024-06-19 16:00 [PATCH] docs: genericirq.rst: remove extra parenthesis in function definition Chih-Wei Chien
@ 2024-06-26 23:15 ` Jonathan Corbet
0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Corbet @ 2024-06-26 23:15 UTC (permalink / raw)
To: Chih-Wei Chien; +Cc: pstanner, linux-doc, linux-kernel, Chih-Wei Chien
Chih-Wei Chien <idoleat@taiker.tw> writes:
> 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>
> ---
> 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 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)
> {
Applied, thanks.
jon
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-06-26 23:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-19 16:00 [PATCH] docs: genericirq.rst: remove extra parenthesis in function definition Chih-Wei Chien
2024-06-26 23:15 ` Jonathan Corbet
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.