root/drivers/usb/gadget/function/f_uvc.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   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 
   9 #ifndef _F_UVC_H_
  10 #define _F_UVC_H_
  11 
  12 struct uvc_device;
  13 
  14 void uvc_function_setup_continue(struct uvc_device *uvc);
  15 
  16 void uvc_function_connect(struct uvc_device *uvc);
  17 
  18 void uvc_function_disconnect(struct uvc_device *uvc);
  19 
  20 #endif /* _F_UVC_H_ */

/* [<][>][^][v][top][bottom][index][help] */