diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-08-06 13:15:06 +0200 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-08-07 22:25:50 -0400 |
commit | 7a39e72d86326d30b4caaf8d6244967e3ca8adad (patch) | |
tree | 28140a0b96d58a2244036b48d284d51b6c8f1faa /src/block.c | |
parent | 5a023065388287e261ae9212452ff541f9fa9cd3 (diff) | |
download | seabios-7a39e72d86326d30b4caaf8d6244967e3ca8adad.tar.gz |
scsi: add AMD PCscsi driver
This is a driver for an AMD PCscsi (am53c974) SCSI card. It can be
used together with DOS or old operating systems such as Windows NT 3.1,
Windows 3.1 or Windows 98.
Cc: Hervé Poussineau <hpoussin@reactos.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'src/block.c')
-rw-r--r-- | src/block.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/block.c b/src/block.c index 1c200cca..243428e7 100644 --- a/src/block.c +++ b/src/block.c @@ -335,6 +335,7 @@ process_op(struct disk_op_s *op) case DTYPE_UAS: case DTYPE_VIRTIO_SCSI: case DTYPE_LSI_SCSI: + case DTYPE_ESP_SCSI: return process_scsi_op(op); default: op->count = 0; |