X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Fblock.c;h=eeebd83b82091881d6ab65d59f90b4f5167c9886;hb=0e7fb5fdad211ab608a7a4e1b0cc32426fc617a0;hp=ac9eb26e090da82c1c07a0be3fcbb5c624c57fb1;hpb=000e084893985208513864a65695e8fbcbd1162f;p=seabios.git diff --git a/src/block.c b/src/block.c index ac9eb26..eeebd83 100644 --- a/src/block.c +++ b/src/block.c @@ -11,7 +11,7 @@ #include "util.h" // dprintf #include "ata.h" // process_ata_op #include "ahci.h" // process_ahci_op -#include "virtio-blk.h" // process_virtio_op +#include "virtio-blk.h" // process_virtio_blk_op #include "blockcmd.h" // cdb_* u8 FloppyCount VAR16VISIBLE; @@ -315,8 +315,8 @@ process_op(struct disk_op_s *op) return process_ramdisk_op(op); case DTYPE_CDEMU: return process_cdemu_op(op); - case DTYPE_VIRTIO: - return process_virtio_op(op); + case DTYPE_VIRTIO_BLK: + return process_virtio_blk_op(op); case DTYPE_AHCI: return process_ahci_op(op); case DTYPE_USB: