1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * f_uvc.h -- USB Video Class Gadget driver 4 * 5 * Copyright (C) 2009-2010 6 * Laurent Pinchart (laurent.pinchart@ideasonboard.com) 7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License as published by 10 * the Free Software Foundation; either version 2 of the License, or 11 * (at your option) any later version. 12 */ 13 14 #ifndef _F_UVC_H_ 15 #define _F_UVC_H_ 16 17 #include <linux/usb/composite.h> 18 #include <linux/usb/video.h> 19 20 #include "uvc.h" 21 22 void uvc_function_setup_continue(struct uvc_device *uvc); 23 24 void uvc_function_connect(struct uvc_device *uvc); 25 26 void uvc_function_disconnect(struct uvc_device *uvc); 27 28 #endif /* _F_UVC_H_ */ 29 30