summaryrefslogtreecommitdiff
path: root/uvc-gadget.c
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2018-05-22 10:44:39 +0100
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2018-05-22 13:53:28 +0300
commit1ac181395e665b68abf571df86779ff6861993c4 (patch)
tree4d4ab20934a95f39fcbfd5fe0784a24172b87561 /uvc-gadget.c
parentab0c87921e03742df93e94a800fe0fcf80e5047b (diff)
uvc-gadget: Sort include headers
Fix the sort order of the header include sections. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'uvc-gadget.c')
-rw-r--r--uvc-gadget.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/uvc-gadget.c b/uvc-gadget.c
index df9d80a..3512e35 100644
--- a/uvc-gadget.c
+++ b/uvc-gadget.c
@@ -17,21 +17,21 @@
* with this program; if not, write to the Free Software Foundation, Inc.,
*/
-#include <sys/time.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
-#include <sys/types.h>
-#include <sys/stat.h>
#include <sys/select.h>
+#include <sys/stat.h>
+#include <sys/time.h>
+#include <sys/types.h>
-#include <unistd.h>
+#include <errno.h>
#include <fcntl.h>
#include <signal.h>
-#include <stdlib.h>
-#include <stdio.h>
#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
-#include <errno.h>
+#include <unistd.h>
#include <linux/usb/ch9.h>
#include <linux/usb/g_uvc.h>
@@ -39,8 +39,8 @@
#include <linux/videodev2.h>
#include "events.h"
-#include "v4l2.h"
#include "tools.h"
+#include "v4l2.h"
#define UVC_INTF_CONTROL 0
#define UVC_INTF_STREAMING 1