From 9fcef36be69fe2c6842680ec78c432cbdbbdc92d Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Sat, 26 Jun 2021 01:04:56 +0300 Subject: libcamera: device_enumerator: Fix include order for internal headers The device_enumerator_sysfs.h and device_enumerator_udev.h internal headers are not at the correct location. Fix it. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham Reviewed-by: Paul Elder --- src/libcamera/device_enumerator.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/libcamera/device_enumerator.cpp b/src/libcamera/device_enumerator.cpp index 1f33faf5..cfd1e6b2 100644 --- a/src/libcamera/device_enumerator.cpp +++ b/src/libcamera/device_enumerator.cpp @@ -6,13 +6,13 @@ */ #include "libcamera/internal/device_enumerator.h" -#include "libcamera/internal/device_enumerator_sysfs.h" -#include "libcamera/internal/device_enumerator_udev.h" #include #include +#include "libcamera/internal/device_enumerator_sysfs.h" +#include "libcamera/internal/device_enumerator_udev.h" #include "libcamera/internal/media_device.h" /** -- cgit v1.2.1