]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PATCH] DocBook: fix kernel-doc comments
authorMartin Waitz <tali@admingilde.org>
Tue, 10 Jan 2006 04:53:55 +0000 (20:53 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Tue, 10 Jan 2006 16:01:53 +0000 (08:01 -0800)
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>
drivers/base/core.c
include/linux/rio_drv.h
include/sound/core.h

index fd8059920dbfde1a91a472d63480d0293b88236b..6b355bd7816d8fcffea570047396eb28323f6771 100644 (file)
@@ -161,8 +161,8 @@ static ssize_t store_uevent(struct device *dev, struct device_attribute *attr,
        return count;
 }
 
-/**
- *     device_subsys - structure to be registered with kobject core.
+/*
+ *     devices_subsys - structure to be registered with kobject core.
  */
 
 decl_subsys(devices, &ktype_device, &device_uevent_ops);
index 157d7e3236b59c7f114540d6ff32e37aa84b7141..f54772d0e7f821981e6db96b5586977f3acb5051 100644 (file)
@@ -337,8 +337,8 @@ static inline void rio_init_dbell_res(struct resource *res, u16 start, u16 end)
 
 /**
  * RIO_DEVICE - macro used to describe a specific RIO device
- * @vid: the 16 bit RIO vendor ID
- * @did: the 16 bit RIO device ID
+ * @dev: the 16 bit RIO device ID
+ * @ven: the 16 bit RIO vendor ID
  *
  * This macro is used to create a struct rio_device_id that matches a
  * specific device.  The assembly vendor and assembly device fields
index 90ac6132ea3bced84ced0246e9af8a274313036e..3093e3ddcf36cd3e7ed1204937ab443b153b0056 100644 (file)
@@ -317,7 +317,7 @@ void snd_verbose_printd(const char *file, int line, const char *format, ...)
 #ifdef CONFIG_SND_VERBOSE_PRINTK
 /**
  * snd_printd - debug printk
- * @format: format string
+ * @fmt: format string
  *
  * Compiled only when Works like snd_printk() for debugging purpose.
  * Ignored when CONFIG_SND_DEBUG is not set.
@@ -331,7 +331,6 @@ void snd_verbose_printd(const char *file, int line, const char *format, ...)
 /**
  * snd_assert - run-time assertion macro
  * @expr: expression
- * @args...: the action
  *
  * This macro checks the expression in run-time and invokes the commands
  * given in the rest arguments if the assertion is failed.