summaryrefslogtreecommitdiffstats
path: root/include/usb/mass_storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/usb/mass_storage.h')
-rw-r--r--include/usb/mass_storage.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/usb/mass_storage.h b/include/usb/mass_storage.h
deleted file mode 100644
index 084b3c8e8f..0000000000
--- a/include/usb/mass_storage.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/* 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 <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;
- char name[16];
-};
-
-int usb_ums_register(struct f_ums_opts *);
-
-#endif /* __USB_MASS_STORAGE_H__ */