aboutsummaryrefslogtreecommitdiffstats
path: root/src/hw/esp-scsi.h
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2013-09-02 20:48:46 -0400
committerKevin O'Connor <kevin@koconnor.net>2013-09-02 20:48:46 -0400
commit5d369d8d9eb5326db111cc2e518c74739dbe3f84 (patch)
tree1fe04c2372e2041c5feb7e6c177a25f692cf4e76 /src/hw/esp-scsi.h
parent3cb0f504a782c1a9c790b939631854473c039397 (diff)
downloadseabios-5d369d8d9eb5326db111cc2e518c74739dbe3f84.tar.gz
Move code centered around specific hardware devices to src/hw/
Move many C files from the src/ directory to the new src/hw/ directory. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/hw/esp-scsi.h')
-rw-r--r--src/hw/esp-scsi.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/hw/esp-scsi.h b/src/hw/esp-scsi.h
new file mode 100644
index 00000000..dc555f39
--- /dev/null
+++ b/src/hw/esp-scsi.h
@@ -0,0 +1,8 @@
+#ifndef __ESP_SCSI_H
+#define __ESP_SCSI_H
+
+struct disk_op_s;
+int esp_scsi_cmd_data(struct disk_op_s *op, void *cdbcmd, u16 blocksize);
+void esp_scsi_setup(void);
+
+#endif /* __ESP_SCSI_H */