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

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

INCLUDED FROM


   1 // SPDX-License-Identifier: GPL-2.0
   2 /*
   3  *      uvc_video.h  --  USB Video Class Gadget driver
   4  *
   5  * Copyright (C) 2009-2010
   6  *              Laurent Pinchart (laurent.pinchart@ideasonboard.com)
   7  *
   8  * Copyright (c) 2013 Samsung Electronics Co., Ltd.
   9  *              http://www.samsung.com
  10  *              Author: Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
  11  */
  12 #ifndef __UVC_VIDEO_H__
  13 #define __UVC_VIDEO_H__
  14 
  15 struct uvc_video;
  16 
  17 int uvcg_video_pump(struct uvc_video *video);
  18 
  19 int uvcg_video_enable(struct uvc_video *video, int enable);
  20 
  21 int uvcg_video_init(struct uvc_video *video, struct uvc_device *uvc);
  22 
  23 #endif /* __UVC_VIDEO_H__ */

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