aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Waitz <tali@admingilde.org>2006-01-09 23:53:55 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-10 11:01:53 -0500
commit0863afb32b77fc89c7110b3d10fb048cb56bb1b5 (patch)
treeee9e330dcdd1f7331947afdb0b06be7caf7c98d7
parent061350e7ecf869ed3c98d962b16a772e9674e283 (diff)
[PATCH] DocBook: fix kernel-doc comments
Fix typos in comments to remove kernel-doc warnings. Signed-off-by: Martin Waitz <tali@admingilde.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--drivers/base/core.c4
-rw-r--r--include/linux/rio_drv.h4
-rw-r--r--include/sound/core.h3
3 files changed, 5 insertions, 6 deletions
diff --git a/drivers/base/core.c b/drivers/base/core.c
index fd8059920dbf..6b355bd7816d 100644
--- a/drivers/base/core.c
+++ b/drivers/base/core.c
@@ -161,8 +161,8 @@ static ssize_t store_uevent(struct device *dev, struct device_attribute *attr,
161 return count; 161 return count;
162} 162}
163 163
164/** 164/*
165 * device_subsys - structure to be registered with kobject core. 165 * devices_subsys - structure to be registered with kobject core.
166 */ 166 */
167 167
168decl_subsys(devices, &ktype_device, &device_uevent_ops); 168decl_subsys(devices, &ktype_device, &device_uevent_ops);
diff --git a/include/linux/rio_drv.h b/include/linux/rio_drv.h
index 157d7e3236b5..f54772d0e7f8 100644
--- a/include/linux/rio_drv.h
+++ b/include/linux/rio_drv.h
@@ -337,8 +337,8 @@ static inline void rio_init_dbell_res(struct resource *res, u16 start, u16 end)
337 337
338/** 338/**
339 * RIO_DEVICE - macro used to describe a specific RIO device 339 * RIO_DEVICE - macro used to describe a specific RIO device
340 * @vid: the 16 bit RIO vendor ID 340 * @dev: the 16 bit RIO device ID
341 * @did: the 16 bit RIO device ID 341 * @ven: the 16 bit RIO vendor ID
342 * 342 *
343 * This macro is used to create a struct rio_device_id that matches a 343 * This macro is used to create a struct rio_device_id that matches a
344 * specific device. The assembly vendor and assembly device fields 344 * specific device. The assembly vendor and assembly device fields
diff --git a/include/sound/core.h b/include/sound/core.h
index 90ac6132ea3b..3093e3ddcf36 100644
--- a/include/sound/core.h
+++ b/include/sound/core.h
@@ -317,7 +317,7 @@ void snd_verbose_printd(const char *file, int line, const char *format, ...)
317#ifdef CONFIG_SND_VERBOSE_PRINTK 317#ifdef CONFIG_SND_VERBOSE_PRINTK
318/** 318/**
319 * snd_printd - debug printk 319 * snd_printd - debug printk
320 * @format: format string 320 * @fmt: format string
321 * 321 *
322 * Compiled only when Works like snd_printk() for debugging purpose. 322 * Compiled only when Works like snd_printk() for debugging purpose.
323 * Ignored when CONFIG_SND_DEBUG is not set. 323 * Ignored when CONFIG_SND_DEBUG is not set.
@@ -331,7 +331,6 @@ void snd_verbose_printd(const char *file, int line, const char *format, ...)
331/** 331/**
332 * snd_assert - run-time assertion macro 332 * snd_assert - run-time assertion macro
333 * @expr: expression 333 * @expr: expression
334 * @args...: the action
335 * 334 *
336 * This macro checks the expression in run-time and invokes the commands 335 * This macro checks the expression in run-time and invokes the commands
337 * given in the rest arguments if the assertion is failed. 336 * given in the rest arguments if the assertion is failed.