diff options
author | Nishanth Menon <nm@ti.com> | 2014-06-26 03:10:26 -0400 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2014-06-30 15:11:23 -0400 |
commit | e30ef8abb383903f2b7e1bced971b98fd30cafc3 (patch) | |
tree | 0d68d5f736c9a2826b16322ae6e38eef437acb0f | |
parent | 4dbf45e3c2f3acfd2096cb6a731d159492ddca99 (diff) |
irqchip: crossbar: Fix kerneldoc warning
Adding missing properties for kerneldoc (@write) and cleanup
of harmless warnings while we are here.
kerneldoc warnings:
Warning(drivers/irqchip/irq-crossbar.c:27): missing initial short description on line:
* struct crossbar_device: crossbar device description
Info(drivers/irqchip/irq-crossbar.c:27): Scanning doc for struct
Warning(drivers/irqchip/irq-crossbar.c:39): No description found for parameter 'write'
2 warnings
Signed-off-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Sricharan R <r.sricharan@ti.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Link: https://lkml.kernel.org/r/1403766634-18543-9-git-send-email-r.sricharan@ti.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
-rw-r--r-- | drivers/irqchip/irq-crossbar.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/irqchip/irq-crossbar.c b/drivers/irqchip/irq-crossbar.c index f7eda9f5997e..cee556bf603c 100644 --- a/drivers/irqchip/irq-crossbar.c +++ b/drivers/irqchip/irq-crossbar.c | |||
@@ -22,12 +22,14 @@ | |||
22 | #define IRQ_SKIP -3 | 22 | #define IRQ_SKIP -3 |
23 | #define GIC_IRQ_START 32 | 23 | #define GIC_IRQ_START 32 |
24 | 24 | ||
25 | /* | 25 | /** |
26 | * struct crossbar_device - crossbar device description | ||
26 | * @int_max: maximum number of supported interrupts | 27 | * @int_max: maximum number of supported interrupts |
27 | * @safe_map: safe default value to initialize the crossbar | 28 | * @safe_map: safe default value to initialize the crossbar |
28 | * @irq_map: array of interrupts to crossbar number mapping | 29 | * @irq_map: array of interrupts to crossbar number mapping |
29 | * @crossbar_base: crossbar base address | 30 | * @crossbar_base: crossbar base address |
30 | * @register_offsets: offsets for each irq number | 31 | * @register_offsets: offsets for each irq number |
32 | * @write: register write function pointer | ||
31 | */ | 33 | */ |
32 | struct crossbar_device { | 34 | struct crossbar_device { |
33 | uint int_max; | 35 | uint int_max; |