diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2010-05-21 12:03:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-21 13:48:12 -0400 |
commit | b4e6b09738fde057ce885703705f71cc953d0512 (patch) | |
tree | aacaf3adc99f19281d808d7c5a45ea47161be675 /include/linux/interrupt.h | |
parent | 70ca0a42fe1702ac0784386c44b05d18ee5f1f9e (diff) |
interrupt.h: fix fatal kernel-doc error
Fix kernel-doc fatal error:
/** beginning a non-kernel-doc comment block:
(That alone does not kill kernel-doc, but the 'enum' was
totally confusing to it.)
Error(/lnx/src/TMP/linux-2.6.34-git6//include/linux/interrupt.h:88): cannot understand prototype: 'enum '
make[2]: *** [Documentation/DocBook/genericirq.xml] Error 1
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/interrupt.h')
-rw-r--r-- | include/linux/interrupt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 5137db3317f9..c2331138ca1b 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
@@ -78,7 +78,7 @@ enum { | |||
78 | IRQTF_AFFINITY, | 78 | IRQTF_AFFINITY, |
79 | }; | 79 | }; |
80 | 80 | ||
81 | /** | 81 | /* |
82 | * These values can be returned by request_any_context_irq() and | 82 | * These values can be returned by request_any_context_irq() and |
83 | * describe the context the interrupt will be run in. | 83 | * describe the context the interrupt will be run in. |
84 | * | 84 | * |