aboutsummaryrefslogtreecommitdiff
path: root/src/hw/usb-msc.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/usb-msc.h
parent3cb0f504a782c1a9c790b939631854473c039397 (diff)
downloadseabios-hppa-5d369d8d9eb5326db111cc2e518c74739dbe3f84.zip
seabios-hppa-5d369d8d9eb5326db111cc2e518c74739dbe3f84.tar.gz
seabios-hppa-5d369d8d9eb5326db111cc2e518c74739dbe3f84.tar.bz2
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/usb-msc.h')
-rw-r--r--src/hw/usb-msc.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/hw/usb-msc.h b/src/hw/usb-msc.h
new file mode 100644
index 0000000..c40d755
--- /dev/null
+++ b/src/hw/usb-msc.h
@@ -0,0 +1,10 @@
+#ifndef __USB_MSC_H
+#define __USB_MSC_H
+
+// usb-msc.c
+struct disk_op_s;
+int usb_cmd_data(struct disk_op_s *op, void *cdbcmd, u16 blocksize);
+struct usbdevice_s;
+int usb_msc_setup(struct usbdevice_s *usbdev);
+
+#endif // ush-msc.h