diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2009-06-11 23:00:41 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-11 23:14:23 -0400 |
commit | 8ebf975608aaebd7feb33d77f07ba21a6380e086 (patch) | |
tree | 6de4ee1dd3ede890169644ea586ed7c8c9d8f7b2 /block/blk-settings.c | |
parent | 4b4f1d017815f96737ca4a62f90e5a1f0b9f02d6 (diff) |
block: fix kernel-doc in recent block/ changes
Fix kernel-doc warnings in recently changed block/ source code.
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'block/blk-settings.c')
-rw-r--r-- | block/blk-settings.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/block/blk-settings.c b/block/blk-settings.c index 1c4df9bf6813..d71cedc09c4e 100644 --- a/block/blk-settings.c +++ b/block/blk-settings.c | |||
@@ -343,7 +343,7 @@ EXPORT_SYMBOL(blk_queue_physical_block_size); | |||
343 | /** | 343 | /** |
344 | * blk_queue_alignment_offset - set physical block alignment offset | 344 | * blk_queue_alignment_offset - set physical block alignment offset |
345 | * @q: the request queue for the device | 345 | * @q: the request queue for the device |
346 | * @alignment: alignment offset in bytes | 346 | * @offset: alignment offset in bytes |
347 | * | 347 | * |
348 | * Description: | 348 | * Description: |
349 | * Some devices are naturally misaligned to compensate for things like | 349 | * Some devices are naturally misaligned to compensate for things like |
@@ -362,7 +362,7 @@ EXPORT_SYMBOL(blk_queue_alignment_offset); | |||
362 | /** | 362 | /** |
363 | * blk_queue_io_min - set minimum request size for the queue | 363 | * blk_queue_io_min - set minimum request size for the queue |
364 | * @q: the request queue for the device | 364 | * @q: the request queue for the device |
365 | * @io_min: smallest I/O size in bytes | 365 | * @min: smallest I/O size in bytes |
366 | * | 366 | * |
367 | * Description: | 367 | * Description: |
368 | * Some devices have an internal block size bigger than the reported | 368 | * Some devices have an internal block size bigger than the reported |
@@ -385,7 +385,7 @@ EXPORT_SYMBOL(blk_queue_io_min); | |||
385 | /** | 385 | /** |
386 | * blk_queue_io_opt - set optimal request size for the queue | 386 | * blk_queue_io_opt - set optimal request size for the queue |
387 | * @q: the request queue for the device | 387 | * @q: the request queue for the device |
388 | * @io_opt: optimal request size in bytes | 388 | * @opt: optimal request size in bytes |
389 | * | 389 | * |
390 | * Description: | 390 | * Description: |
391 | * Drivers can call this function to set the preferred I/O request | 391 | * Drivers can call this function to set the preferred I/O request |