summaryrefslogtreecommitdiff
path: root/include/linux/usb/mass_storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/usb/mass_storage.h')
-rw-r--r--include/linux/usb/mass_storage.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/include/linux/usb/mass_storage.h b/include/linux/usb/mass_storage.h
new file mode 100644
index 0000000000..5bf7fea2f3
--- /dev/null
+++ b/include/linux/usb/mass_storage.h
@@ -0,0 +1,29 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Copyright (C) 2011 Samsung Electrnoics
+ * Lukasz Majewski <l.majewski@samsung.com>
+ */
+
+#ifndef __USB_MASS_STORAGE_H__
+#define __USB_MASS_STORAGE_H__
+
+#include <linux/usb/composite.h>
+
+/* Wait at maximum 60 seconds for cable connection */
+#define UMS_CABLE_READY_TIMEOUT 60
+
+struct fsg_common;
+
+struct f_ums_opts {
+ struct usb_function_instance func_inst;
+ struct fsg_common *common;
+ struct file_list *files;
+ unsigned int num_sectors;
+ int fd;
+ int refcnt;
+ char name[16];
+};
+
+int usb_ums_register(struct f_ums_opts *);
+
+#endif /* __USB_MASS_STORAGE_H__ */