summaryrefslogtreecommitdiffstats
path: root/cpukit/libblock/include/rtems/diskdevs.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-06-04 13:26:13 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-06-04 17:30:20 +0200
commitdf84ca249db0a6ea1efa80020ad0a2576a7115c8 (patch)
tree52625488b865b8e03284206b224876fe12ff156b /cpukit/libblock/include/rtems/diskdevs.h
parentbsp/t32mppc: Fix Trace32 configuration file (diff)
downloadrtems-df84ca249db0a6ea1efa80020ad0a2576a7115c8.tar.bz2
libblock: Rename structure
Diffstat (limited to 'cpukit/libblock/include/rtems/diskdevs.h')
-rw-r--r--cpukit/libblock/include/rtems/diskdevs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libblock/include/rtems/diskdevs.h b/cpukit/libblock/include/rtems/diskdevs.h
index 0b194096a5..6e6be5e9b7 100644
--- a/cpukit/libblock/include/rtems/diskdevs.h
+++ b/cpukit/libblock/include/rtems/diskdevs.h
@@ -61,7 +61,7 @@ typedef int (*rtems_block_device_ioctl)(
#define RTEMS_DISK_READ_AHEAD_NO_TRIGGER ((rtems_blkdev_bnum) -1)
/**
- * @brief Read-ahead control.
+ * @brief Block device read-ahead control.
*/
typedef struct {
/**
@@ -84,7 +84,7 @@ typedef struct {
* be arbitrary.
*/
rtems_blkdev_bnum next;
-} rtems_disk_read_ahread;
+} rtems_blkdev_read_ahead;
/**
* @brief Description of a disk device (logical and physical disks).
@@ -204,7 +204,7 @@ struct rtems_disk_device {
/**
* @brief Read-ahead control for this disk.
*/
- rtems_disk_read_ahread read_ahead;
+ rtems_blkdev_read_ahead read_ahead;
};
/**