aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2013-12-30 22:06:47 -0500
committerKevin O'Connor <kevin@koconnor.net>2014-01-29 12:57:01 -0500
commitd1bb7e52f5e0e96588d9b6554f277a92f28b560e (patch)
tree07628326c51daf786392bca8d73ac47a83240b24 /src
parent7f54bf7e8870366bdbee4db8e6e85c06596c88d6 (diff)
downloadseabios-d1bb7e52f5e0e96588d9b6554f277a92f28b560e.tar.gz
Add space between DTYPE_* definitions.
Avoid consective numbering on the DTYPE_* definitions. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r--src/block.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/block.h b/src/block.h
index 9cb25d02..bb577481 100644
--- a/src/block.h
+++ b/src/block.h
@@ -69,21 +69,21 @@ struct drive_s {
#define CDROM_SECTOR_SIZE 2048
#define DTYPE_NONE 0x00
-#define DTYPE_FLOPPY 0x01
-#define DTYPE_ATA 0x02
-#define DTYPE_ATA_ATAPI 0x03
-#define DTYPE_RAMDISK 0x04
-#define DTYPE_CDEMU 0x05
-#define DTYPE_AHCI 0x06
-#define DTYPE_AHCI_ATAPI 0x07
-#define DTYPE_VIRTIO_SCSI 0x08
-#define DTYPE_VIRTIO_BLK 0x09
-#define DTYPE_USB 0x0a
-#define DTYPE_UAS 0x0b
-#define DTYPE_LSI_SCSI 0x0c
-#define DTYPE_ESP_SCSI 0x0d
-#define DTYPE_MEGASAS 0x0e
-#define DTYPE_PVSCSI 0x0f
+#define DTYPE_FLOPPY 0x10
+#define DTYPE_ATA 0x20
+#define DTYPE_ATA_ATAPI 0x21
+#define DTYPE_RAMDISK 0x30
+#define DTYPE_CDEMU 0x40
+#define DTYPE_AHCI 0x50
+#define DTYPE_AHCI_ATAPI 0x51
+#define DTYPE_VIRTIO_SCSI 0x60
+#define DTYPE_VIRTIO_BLK 0x61
+#define DTYPE_USB 0x70
+#define DTYPE_UAS 0x71
+#define DTYPE_LSI_SCSI 0x80
+#define DTYPE_ESP_SCSI 0x81
+#define DTYPE_MEGASAS 0x82
+#define DTYPE_PVSCSI 0x83
#define MAXDESCSIZE 80