40 lines
		
	
	
	
		
			1.1 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			40 lines
		
	
	
	
		
			1.1 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
|   | /*
 | ||
|  |  * u_uvc.h | ||
|  |  * | ||
|  |  * Utility definitions for the uvc function | ||
|  |  * | ||
|  |  * Copyright (c) 2013-2014 Samsung Electronics Co., Ltd. | ||
|  |  *		http://www.samsung.com
 | ||
|  |  * | ||
|  |  * Author: Andrzej Pietrasiewicz <andrzej.p@samsung.com> | ||
|  |  * | ||
|  |  * This program is free software; you can redistribute it and/or modify | ||
|  |  * it under the terms of the GNU General Public License version 2 as | ||
|  |  * published by the Free Software Foundation. | ||
|  |  */ | ||
|  | 
 | ||
|  | #ifndef U_UVC_H
 | ||
|  | #define U_UVC_H
 | ||
|  | 
 | ||
|  | #include <linux/usb/composite.h>
 | ||
|  | 
 | ||
|  | #define to_f_uvc_opts(f)	container_of(f, struct f_uvc_opts, func_inst)
 | ||
|  | 
 | ||
|  | struct f_uvc_opts { | ||
|  | 	struct usb_function_instance			func_inst; | ||
|  | 	unsigned int					uvc_gadget_trace_param; | ||
|  | 	unsigned int					streaming_interval; | ||
|  | 	unsigned int					streaming_maxpacket; | ||
|  | 	unsigned int					streaming_maxburst; | ||
|  | 	const struct uvc_descriptor_header * const	*fs_control; | ||
|  | 	const struct uvc_descriptor_header * const	*ss_control; | ||
|  | 	const struct uvc_descriptor_header * const	*fs_streaming; | ||
|  | 	const struct uvc_descriptor_header * const	*hs_streaming; | ||
|  | 	const struct uvc_descriptor_header * const	*ss_streaming; | ||
|  | }; | ||
|  | 
 | ||
|  | void uvc_set_trace_param(unsigned int trace); | ||
|  | 
 | ||
|  | #endif /* U_UVC_H */
 | ||
|  | 
 |