Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 <idoleat@taiker.tw>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20240619160057.128208-1-idoleat@taiker.tw

authored by

Chih-Wei Chien and committed by
Jonathan Corbet
543d67de 27a0781a

+1 -1
+1 -1
Documentation/core-api/genericirq.rst
··· 210 210 } 211 211 } 212 212 213 - noop(struct irq_data *data)) 213 + noop(struct irq_data *data) 214 214 { 215 215 } 216 216