summaryrefslogtreecommitdiffstats
path: root/cpukit/libblock/include/rtems/ide_part_table.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-01-09 15:40:54 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-01-09 15:40:54 +0000
commitc01d95b7751a42434b7fa8cd65d7a75f3f44e0e2 (patch)
treefe2e270360c8c8f938aaf8e855ae77e385b02387 /cpukit/libblock/include/rtems/ide_part_table.h
parent2004-01-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-c01d95b7751a42434b7fa8cd65d7a75f3f44e0e2.tar.bz2
2004-01-08 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* include/rtems/blkdev.h, include/rtems/ide_part_table.h, src/bdbuf.c, src/ide_part_table.c, src/ramdisk.c: Switch to using c99 fixed size types instead of RTEMS-types.
Diffstat (limited to 'cpukit/libblock/include/rtems/ide_part_table.h')
-rw-r--r--cpukit/libblock/include/rtems/ide_part_table.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/cpukit/libblock/include/rtems/ide_part_table.h b/cpukit/libblock/include/rtems/ide_part_table.h
index 12933e465a..6c3af11639 100644
--- a/cpukit/libblock/include/rtems/ide_part_table.h
+++ b/cpukit/libblock/include/rtems/ide_part_table.h
@@ -79,8 +79,8 @@
*/
typedef struct sector_data_s
{
- unsigned32 sector_num; /* sector number on the device */
- unsigned8 data[0]; /* raw sector data */
+ uint32_t sector_num; /* sector number on the device */
+ uint8_t data[0]; /* raw sector data */
} sector_data_t;
@@ -115,12 +115,12 @@ struct disk_desc_s;
* contains all neccessary information about partition
*/
typedef struct part_desc_s {
- unsigned8 bootable; /* is the partition active */
- unsigned8 sys_type; /* type of partition */
- unsigned8 log_id; /* logical number of partition */
- unsigned32 start; /* first partition sector, in absolute numeration */
- unsigned32 size; /* size in sectors */
- unsigned32 end; /* last partition sector, end = start + size - 1 */
+ uint8_t bootable; /* is the partition active */
+ uint8_t sys_type; /* type of partition */
+ uint8_t log_id; /* logical number of partition */
+ uint32_t start; /* first partition sector, in absolute numeration */
+ uint32_t size; /* size in sectors */
+ uint32_t end; /* last partition sector, end = start + size - 1 */
struct disk_desc_s *disk_desc; /* descriptor of disk, partition contains in */
struct part_desc_s *ext_part; /* extended partition containing this one */
@@ -134,11 +134,11 @@ typedef struct disk_desc_s {
dev_t dev; /* device number */
/* device name in /dev filesystem */
- unsigned8 dev_name[RTEMS_IDE_PARTITION_DEV_NAME_LENGTH_MAX];
+ uint8_t dev_name[RTEMS_IDE_PARTITION_DEV_NAME_LENGTH_MAX];
- unsigned32 sector_size; /* size of sector */
- unsigned32 sector_bits; /* the base-2 logarithm of sector_size */
- unsigned32 lba_size; /* total amount of sectors in lba address mode */
+ uint32_t sector_size; /* size of sector */
+ uint32_t sector_bits; /* the base-2 logarithm of sector_size */
+ uint32_t lba_size; /* total amount of sectors in lba address mode */
int last_log_id; /* used for logical disks enumerating */
/* primary partition descriptors */