Commit 284eb166 authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Felipe Balbi

usb: gadget: uvc: Minimize #include in headers

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: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent d396e47f
...@@ -6,16 +6,17 @@ ...@@ -6,16 +6,17 @@
* Laurent Pinchart (laurent.pinchart@ideasonboard.com) * Laurent Pinchart (laurent.pinchart@ideasonboard.com)
*/ */
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/device.h> #include <linux/device.h>
#include <linux/errno.h> #include <linux/errno.h>
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/kernel.h>
#include <linux/list.h> #include <linux/list.h>
#include <linux/module.h>
#include <linux/mutex.h> #include <linux/mutex.h>
#include <linux/string.h> #include <linux/string.h>
#include <linux/usb/ch9.h> #include <linux/usb/ch9.h>
#include <linux/usb/gadget.h> #include <linux/usb/gadget.h>
#include <linux/usb/g_uvc.h>
#include <linux/usb/video.h> #include <linux/usb/video.h>
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
#include <linux/wait.h> #include <linux/wait.h>
......
...@@ -9,10 +9,7 @@ ...@@ -9,10 +9,7 @@
#ifndef _F_UVC_H_ #ifndef _F_UVC_H_
#define _F_UVC_H_ #define _F_UVC_H_
#include <linux/usb/composite.h> struct uvc_device;
#include <linux/usb/video.h>
#include "uvc.h"
void uvc_function_setup_continue(struct uvc_device *uvc); void uvc_function_setup_continue(struct uvc_device *uvc);
...@@ -21,4 +18,3 @@ void uvc_function_connect(struct uvc_device *uvc); ...@@ -21,4 +18,3 @@ void uvc_function_connect(struct uvc_device *uvc);
void uvc_function_disconnect(struct uvc_device *uvc); void uvc_function_disconnect(struct uvc_device *uvc);
#endif /* _F_UVC_H_ */ #endif /* _F_UVC_H_ */
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
#ifndef U_UVC_H #ifndef U_UVC_H
#define U_UVC_H #define U_UVC_H
#include <linux/mutex.h>
#include <linux/usb/composite.h> #include <linux/usb/composite.h>
#include <linux/usb/video.h> #include <linux/usb/video.h>
......
...@@ -9,16 +9,22 @@ ...@@ -9,16 +9,22 @@
#ifndef _UVC_GADGET_H_ #ifndef _UVC_GADGET_H_
#define _UVC_GADGET_H_ #define _UVC_GADGET_H_
#include <linux/usb.h> /* For usb_endpoint_* */ #include <linux/list.h>
#include <linux/mutex.h>
#include <linux/spinlock.h>
#include <linux/usb/composite.h> #include <linux/usb/composite.h>
#include <linux/usb/gadget.h>
#include <linux/usb/g_uvc.h>
#include <linux/videodev2.h> #include <linux/videodev2.h>
#include <media/v4l2-fh.h>
#include <media/v4l2-device.h> #include <media/v4l2-device.h>
#include <media/v4l2-dev.h>
#include <media/v4l2-fh.h>
#include "uvc_queue.h" #include "uvc_queue.h"
struct usb_ep;
struct usb_request;
struct uvc_descriptor_header;
/* ------------------------------------------------------------------------ /* ------------------------------------------------------------------------
* Debugging, printing and logging * Debugging, printing and logging
*/ */
......
...@@ -2,13 +2,15 @@ ...@@ -2,13 +2,15 @@
#ifndef _UVC_QUEUE_H_ #ifndef _UVC_QUEUE_H_
#define _UVC_QUEUE_H_ #define _UVC_QUEUE_H_
#ifdef __KERNEL__ #include <linux/list.h>
#include <linux/kernel.h>
#include <linux/poll.h> #include <linux/poll.h>
#include <linux/videodev2.h> #include <linux/spinlock.h>
#include <media/videobuf2-v4l2.h> #include <media/videobuf2-v4l2.h>
struct file;
struct mutex;
/* Maximum frame size in bytes, for sanity checking. */ /* Maximum frame size in bytes, for sanity checking. */
#define UVC_MAX_FRAME_SIZE (16*1024*1024) #define UVC_MAX_FRAME_SIZE (16*1024*1024)
/* Maximum number of video buffers. */ /* Maximum number of video buffers. */
...@@ -91,7 +93,5 @@ struct uvc_buffer *uvcg_queue_next_buffer(struct uvc_video_queue *queue, ...@@ -91,7 +93,5 @@ struct uvc_buffer *uvcg_queue_next_buffer(struct uvc_video_queue *queue,
struct uvc_buffer *uvcg_queue_head(struct uvc_video_queue *queue); struct uvc_buffer *uvcg_queue_head(struct uvc_video_queue *queue);
#endif /* __KERNEL__ */
#endif /* _UVC_QUEUE_H_ */ #endif /* _UVC_QUEUE_H_ */
...@@ -6,10 +6,11 @@ ...@@ -6,10 +6,11 @@
* Laurent Pinchart (laurent.pinchart@ideasonboard.com) * Laurent Pinchart (laurent.pinchart@ideasonboard.com)
*/ */
#include <linux/kernel.h>
#include <linux/device.h> #include <linux/device.h>
#include <linux/errno.h> #include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/list.h> #include <linux/list.h>
#include <linux/usb/g_uvc.h>
#include <linux/videodev2.h> #include <linux/videodev2.h>
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
#include <linux/wait.h> #include <linux/wait.h>
......
...@@ -12,6 +12,8 @@ ...@@ -12,6 +12,8 @@
#ifndef __UVC_VIDEO_H__ #ifndef __UVC_VIDEO_H__
#define __UVC_VIDEO_H__ #define __UVC_VIDEO_H__
struct uvc_video;
int uvcg_video_pump(struct uvc_video *video); int uvcg_video_pump(struct uvc_video *video);
int uvcg_video_enable(struct uvc_video *video, int enable); int uvcg_video_enable(struct uvc_video *video, int enable);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment