1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * uvc_configfs.h 4 * 5 * Configfs support for the uvc function. 6 * 7 * Copyright (c) 2014 Samsung Electronics Co., Ltd. 8 * http://www.samsung.com 9 * 10 * Author: Andrzej Pietrasiewicz <andrzej.p@samsung.com> 11 * 12 * This program is free software; you can redistribute it and/or modify 13 * it under the terms of the GNU General Public License version 2 as 14 * published by the Free Software Foundation. 15 */ 16 #ifndef UVC_CONFIGFS_H 17 #define UVC_CONFIGFS_H 18 19 struct f_uvc_opts; 20 21 int uvcg_attach_configfs(struct f_uvc_opts *opts); 22 23 #endif /* UVC_CONFIGFS_H */ 24