mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-16 07:24:39 +08:00
284eb1663b
In order to speed up compilation, only include the headers that are strictly required within other headers. To that end, use forward structure declaration and move #include statements to .c file as appropriate. While at it, sort headers alphabetically, and remove unneeded __KERNEL__ guards. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
21 lines
427 B
C
21 lines
427 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* f_uvc.h -- USB Video Class Gadget driver
|
|
*
|
|
* Copyright (C) 2009-2010
|
|
* Laurent Pinchart (laurent.pinchart@ideasonboard.com)
|
|
*/
|
|
|
|
#ifndef _F_UVC_H_
|
|
#define _F_UVC_H_
|
|
|
|
struct uvc_device;
|
|
|
|
void uvc_function_setup_continue(struct uvc_device *uvc);
|
|
|
|
void uvc_function_connect(struct uvc_device *uvc);
|
|
|
|
void uvc_function_disconnect(struct uvc_device *uvc);
|
|
|
|
#endif /* _F_UVC_H_ */
|