summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2009-05-05 12:56:30 +0000
committerThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2009-05-05 12:56:30 +0000
commitd8602eb655c428bbf346c8e1cfe2bf7fbf06a37c (patch)
treea696b653275224c215907864b14af600012d2a37 /cpukit
parentAdded FDISK command (diff)
downloadrtems-d8602eb655c428bbf346c8e1cfe2bf7fbf06a37c.tar.bz2
Documentation
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/libblock/include/rtems/blkdev.h5
-rw-r--r--cpukit/libblock/include/rtems/diskdevs.h13
2 files changed, 10 insertions, 8 deletions
diff --git a/cpukit/libblock/include/rtems/blkdev.h b/cpukit/libblock/include/rtems/blkdev.h
index d5ec9f46cb..f7a7a9eb70 100644
--- a/cpukit/libblock/include/rtems/blkdev.h
+++ b/cpukit/libblock/include/rtems/blkdev.h
@@ -26,7 +26,8 @@ extern "C" {
*
* @ingroup rtems_libblock
*
- * Interface between device drivers and the block device library.
+ * Interface between device drivers and the
+ * @ref rtems_bdbuf "block device buffer module".
*
* The heart of the block device driver is the @ref RTEMS_BLKIO_REQUEST IO
* control. This call puts IO @ref rtems_blkdev_request "requests" to the block
@@ -97,7 +98,7 @@ typedef struct rtems_blkdev_sg_buffer {
} rtems_blkdev_sg_buffer;
/**
- * The block device dequest structure is used to read or write a number of
+ * The block device request structure is used to read or write a number of
* blocks from or to the device.
*/
typedef struct rtems_blkdev_request {
diff --git a/cpukit/libblock/include/rtems/diskdevs.h b/cpukit/libblock/include/rtems/diskdevs.h
index da5c32ec13..b5254eec5f 100644
--- a/cpukit/libblock/include/rtems/diskdevs.h
+++ b/cpukit/libblock/include/rtems/diskdevs.h
@@ -36,12 +36,13 @@ extern "C" {
*
* @ingroup rtems_libblock
*
- * This module provides functions to manage disk devices. The disk devices are
- * accessed via the RTEMS block device library. A disk is a set of blocks
- * which are identified by a consecutive set of non-negative integers starting
- * at zero. There are also logical disks which contain a subset of consecutive
- * disk blocks. The logical disks are used to represent the partitions of a
- * disk.
+ * This module provides functions to manage disk devices.
+ *
+ * A disk is a set of blocks which are identified by a consecutive set of
+ * non-negative integers starting at zero. There are also logical disks which
+ * contain a subset of consecutive disk blocks. The logical disks are used to
+ * represent the partitions of a disk. The disk devices are accessed via the
+ * @ref rtems_bdbuf "block device buffer module".
*
* @{
*/