aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc/prom.h
diff options
context:
space:
mode:
authorMichael Ellerman <michael@ellerman.id.au>2006-08-01 21:13:50 -0400
committerPaul Mackerras <paulus@samba.org>2006-08-08 03:07:04 -0400
commit40681b95a4ef798bc38c92e0d9b8c06bbdd34409 (patch)
tree8de6bebd3c876737a6c55263548ad1002fe5cbe2 /include/asm-powerpc/prom.h
parent3ab2b385c8a5cdf060c6a41582118a0cb27d0910 (diff)
[POWERPC] Make doc comments extractable
We don't have much in the way of doc comments, but some of those we do have don't work because they start with "/***" or "/*", not "/**" which is what kernel-doc requires. Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/prom.h')
-rw-r--r--include/asm-powerpc/prom.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asm-powerpc/prom.h b/include/asm-powerpc/prom.h
index 31bfea4686a6..7a457bd462a2 100644
--- a/include/asm-powerpc/prom.h
+++ b/include/asm-powerpc/prom.h
@@ -259,7 +259,7 @@ struct of_irq {
259 u32 specifier[OF_MAX_IRQ_SPEC]; /* Specifier copy */ 259 u32 specifier[OF_MAX_IRQ_SPEC]; /* Specifier copy */
260}; 260};
261 261
262/*** 262/**
263 * of_irq_map_init - Initialize the irq remapper 263 * of_irq_map_init - Initialize the irq remapper
264 * @flags: flags defining workarounds to enable 264 * @flags: flags defining workarounds to enable
265 * 265 *
@@ -272,7 +272,7 @@ struct of_irq {
272 272
273extern void of_irq_map_init(unsigned int flags); 273extern void of_irq_map_init(unsigned int flags);
274 274
275/*** 275/**
276 * of_irq_map_raw - Low level interrupt tree parsing 276 * of_irq_map_raw - Low level interrupt tree parsing
277 * @parent: the device interrupt parent 277 * @parent: the device interrupt parent
278 * @intspec: interrupt specifier ("interrupts" property of the device) 278 * @intspec: interrupt specifier ("interrupts" property of the device)
@@ -292,7 +292,7 @@ extern int of_irq_map_raw(struct device_node *parent, const u32 *intspec,
292 const u32 *addr, struct of_irq *out_irq); 292 const u32 *addr, struct of_irq *out_irq);
293 293
294 294
295/*** 295/**
296 * of_irq_map_one - Resolve an interrupt for a device 296 * of_irq_map_one - Resolve an interrupt for a device
297 * @device: the device whose interrupt is to be resolved 297 * @device: the device whose interrupt is to be resolved
298 * @index: index of the interrupt to resolve 298 * @index: index of the interrupt to resolve
@@ -305,7 +305,7 @@ extern int of_irq_map_raw(struct device_node *parent, const u32 *intspec,
305extern int of_irq_map_one(struct device_node *device, int index, 305extern int of_irq_map_one(struct device_node *device, int index,
306 struct of_irq *out_irq); 306 struct of_irq *out_irq);
307 307
308/*** 308/**
309 * of_irq_map_pci - Resolve the interrupt for a PCI device 309 * of_irq_map_pci - Resolve the interrupt for a PCI device
310 * @pdev: the device whose interrupt is to be resolved 310 * @pdev: the device whose interrupt is to be resolved
311 * @out_irq: structure of_irq filled by this function 311 * @out_irq: structure of_irq filled by this function