Commit af9997e4 authored by Randy Dunlap's avatar Randy Dunlap Committed by Linus Torvalds

[PATCH] fix kernel-doc warnings in 2.6.20-rc1

Fix kernel-doc warnings in 2.6.20-rc1.
Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent b7f869a2
...@@ -2453,6 +2453,7 @@ EXPORT_SYMBOL(blk_rq_map_user); ...@@ -2453,6 +2453,7 @@ EXPORT_SYMBOL(blk_rq_map_user);
* @rq: request to map data to * @rq: request to map data to
* @iov: pointer to the iovec * @iov: pointer to the iovec
* @iov_count: number of elements in the iovec * @iov_count: number of elements in the iovec
* @len: I/O byte count
* *
* Description: * Description:
* Data will be mapped directly for zero copy io, if possible. Otherwise * Data will be mapped directly for zero copy io, if possible. Otherwise
......
...@@ -127,6 +127,7 @@ static ssize_t firmware_loading_show(struct device *dev, ...@@ -127,6 +127,7 @@ static ssize_t firmware_loading_show(struct device *dev,
/** /**
* firmware_loading_store - set value in the 'loading' control file * firmware_loading_store - set value in the 'loading' control file
* @dev: device pointer * @dev: device pointer
* @attr: device attribute pointer
* @buf: buffer to scan for loading control value * @buf: buffer to scan for loading control value
* @count: number of bytes in @buf * @count: number of bytes in @buf
* *
......
...@@ -367,7 +367,7 @@ static int i2o_exec_remove(struct device *dev) ...@@ -367,7 +367,7 @@ static int i2o_exec_remove(struct device *dev)
/** /**
* i2o_exec_lct_modified - Called on LCT NOTIFY reply * i2o_exec_lct_modified - Called on LCT NOTIFY reply
* @work: work struct for a specific controller * @_work: work struct for a specific controller
* *
* This function handles asynchronus LCT NOTIFY replies. It parses the * This function handles asynchronus LCT NOTIFY replies. It parses the
* new LCT and if the buffer for the LCT was to small sends a LCT NOTIFY * new LCT and if the buffer for the LCT was to small sends a LCT NOTIFY
......
...@@ -302,7 +302,7 @@ static struct rchan_callbacks default_channel_callbacks = { ...@@ -302,7 +302,7 @@ static struct rchan_callbacks default_channel_callbacks = {
/** /**
* wakeup_readers - wake up readers waiting on a channel * wakeup_readers - wake up readers waiting on a channel
* @private: the channel buffer * @work: work struct that contains the the channel buffer
* *
* This is the work function used to defer reader waking. The * This is the work function used to defer reader waking. The
* reason waking is deferred is that calling directly from write * reason waking is deferred is that calling directly from write
......
...@@ -233,7 +233,7 @@ static void delayed_work_timer_fn(unsigned long __data) ...@@ -233,7 +233,7 @@ static void delayed_work_timer_fn(unsigned long __data)
/** /**
* queue_delayed_work - queue work on a workqueue after delay * queue_delayed_work - queue work on a workqueue after delay
* @wq: workqueue to use * @wq: workqueue to use
* @work: delayable work to queue * @dwork: delayable work to queue
* @delay: number of jiffies to wait before queueing * @delay: number of jiffies to wait before queueing
* *
* Returns 0 if @work was already on a queue, non-zero otherwise. * Returns 0 if @work was already on a queue, non-zero otherwise.
...@@ -268,7 +268,7 @@ EXPORT_SYMBOL_GPL(queue_delayed_work); ...@@ -268,7 +268,7 @@ EXPORT_SYMBOL_GPL(queue_delayed_work);
* queue_delayed_work_on - queue work on specific CPU after delay * queue_delayed_work_on - queue work on specific CPU after delay
* @cpu: CPU number to execute work on * @cpu: CPU number to execute work on
* @wq: workqueue to use * @wq: workqueue to use
* @work: work to queue * @dwork: work to queue
* @delay: number of jiffies to wait before queueing * @delay: number of jiffies to wait before queueing
* *
* Returns 0 if @work was already on a queue, non-zero otherwise. * Returns 0 if @work was already on a queue, non-zero otherwise.
......
...@@ -3587,6 +3587,7 @@ int kmem_ptr_validate(struct kmem_cache *cachep, const void *ptr) ...@@ -3587,6 +3587,7 @@ int kmem_ptr_validate(struct kmem_cache *cachep, const void *ptr)
* @cachep: The cache to allocate from. * @cachep: The cache to allocate from.
* @flags: See kmalloc(). * @flags: See kmalloc().
* @nodeid: node number of the target node. * @nodeid: node number of the target node.
* @caller: return address of caller, used for debug information
* *
* Identical to kmem_cache_alloc but it will allocate memory on the given * Identical to kmem_cache_alloc but it will allocate memory on the given
* node, which can improve the performance for cpu bound structures. * node, which can improve the performance for cpu bound structures.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment