From 5d369d8d9eb5326db111cc2e518c74739dbe3f84 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Mon, 2 Sep 2013 20:48:46 -0400 Subject: 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 --- src/hw/usb-uas.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/hw/usb-uas.h (limited to 'src/hw/usb-uas.h') diff --git a/src/hw/usb-uas.h b/src/hw/usb-uas.h new file mode 100644 index 00000000..ad91c5f6 --- /dev/null +++ b/src/hw/usb-uas.h @@ -0,0 +1,9 @@ +#ifndef __USB_UAS_H +#define __USB_UAS_H + +struct disk_op_s; +int uas_cmd_data(struct disk_op_s *op, void *cdbcmd, u16 blocksize); +struct usbdevice_s; +int usb_uas_setup(struct usbdevice_s *usbdev); + +#endif /* __USB_UAS_H */ -- cgit