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>
This commit is contained in:
parent
4581ce0a82
commit
a8284e3570
1 changed files with 4 additions and 3 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue