diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-09-14 23:57:26 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-09-18 20:48:34 -0400 |
commit | 135f3f676de1416f0cd0fa7f0c886cf1b72222cb (patch) | |
tree | 805d962c2b66daffcb30b0816cce8faf67e8a809 /src/hw/virtio-scsi.c | |
parent | b18557ab09a60476b4269c3a473d8aebeaaa002f (diff) | |
download | seabios-135f3f676de1416f0cd0fa7f0c886cf1b72222cb.tar.gz |
Split disk.h into block.h and std/disk.h.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/hw/virtio-scsi.c')
-rw-r--r-- | src/hw/virtio-scsi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hw/virtio-scsi.c b/src/hw/virtio-scsi.c index 1c3500cb..f50e3356 100644 --- a/src/hw/virtio-scsi.c +++ b/src/hw/virtio-scsi.c @@ -8,15 +8,16 @@ // This file may be distributed under the terms of the GNU LGPLv3 license. #include "biosvar.h" // GET_GLOBAL +#include "block.h" // struct drive_s #include "blockcmd.h" // scsi_drive_setup #include "boot.h" // bootprio_find_scsi_device #include "config.h" // CONFIG_* -#include "disk.h" #include "malloc.h" // free #include "output.h" // dprintf #include "pci.h" // foreachpci #include "pci_ids.h" // PCI_DEVICE_ID_VIRTIO_BLK #include "pci_regs.h" // PCI_VENDOR_ID +#include "std/disk.h" // DISK_RET_SUCCESS #include "string.h" // memset #include "util.h" // usleep #include "virtio-pci.h" |