summaryrefslogtreecommitdiff
path: root/src/v4l2
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2022-03-03 11:06:39 +0000
committerKieran Bingham <kieran.bingham@ideasonboard.com>2022-03-17 16:35:59 +0000
commita8284e3570de133960458c5703e75dc9e8e737c8 (patch)
tree4662bf133b2155e155c25375baefc17f970be9e1 /src/v4l2
parent4581ce0a8250d5d0cadb32793111c33030f3e127 (diff)
v4l2: camera_proxy: Fix header include order
The includes in the v4l2_camera_proxy do not match the code style and trigger clang-format changes when running checkstyle. Update and fix the include order accordingly Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/v4l2')
-rw-r--r--src/v4l2/v4l2_camera_proxy.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/v4l2/v4l2_camera_proxy.cpp b/src/v4l2/v4l2_camera_proxy.cpp
index 74bd54ce..4913e44a 100644
--- a/src/v4l2/v4l2_camera_proxy.cpp
+++ b/src/v4l2/v4l2_camera_proxy.cpp
@@ -10,20 +10,21 @@
#include <algorithm>
#include <array>
#include <errno.h>
-#include <linux/videodev2.h>
#include <numeric>
#include <set>
#include <string.h>
#include <sys/mman.h>
#include <unistd.h>
-#include <libcamera/camera.h>
-#include <libcamera/formats.h>
+#include <linux/videodev2.h>
#include <libcamera/base/log.h>
#include <libcamera/base/object.h>
#include <libcamera/base/utils.h>
+#include <libcamera/camera.h>
+#include <libcamera/formats.h>
+
#include "libcamera/internal/formats.h"
#include "v4l2_camera.h"