diff options
author | Daniel Mentz <danielmentz@google.com> | 2020-01-30 13:06:47 -0800 |
---|---|---|
committer | Daniel Mentz <danielmentz@google.com> | 2020-01-31 14:55:22 -0800 |
commit | ccce882034c60e8ea773c3ee539f3e5904cde293 (patch) | |
tree | be560abc984896ba1f205a8df3f8aeb14727743e /include | |
parent | 9fb50ee0ec6b3020368ff9cc494d08f4270f16cd (diff) |
Fix include path for videodev2{,_exynos_media}.h
The UAPI header videodev2{,_exynos_media}.h is located under linux/.
Change-Id: I23b14bc958e6057eefe64142ad5e9ca1975bf94b
Diffstat (limited to 'include')
-rw-r--r-- | include/exynos_v4l2.h | 2 | ||||
-rw-r--r-- | include/s5p_fimc_v4l2.h | 4 | ||||
-rw-r--r-- | include/v4l2-mediabus.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/include/exynos_v4l2.h b/include/exynos_v4l2.h index 262cc1f..e08c817 100644 --- a/include/exynos_v4l2.h +++ b/include/exynos_v4l2.h @@ -41,7 +41,7 @@ extern "C" { /* V4L2 */ #include <stdbool.h> -#include "videodev2.h" /* vendor specific videodev2.h */ +#include <linux/videodev2.h> /* vendor specific videodev2.h */ /*! \ingroup exynos_v4l2 */ int exynos_v4l2_open(const char *filename, int oflag, ...); diff --git a/include/s5p_fimc_v4l2.h b/include/s5p_fimc_v4l2.h index d0c5d5f..1b46462 100644 --- a/include/s5p_fimc_v4l2.h +++ b/include/s5p_fimc_v4l2.h @@ -20,8 +20,8 @@ #ifndef _S5P_FIMC_H_ #define _S5P_FIMC_H_ -#include "videodev2.h" -#include "videodev2_exynos_media.h" +#include <linux/videodev2.h> +#include <linux/videodev2_exynos_media.h> /* * G E N E R A L S diff --git a/include/v4l2-mediabus.h b/include/v4l2-mediabus.h index 09447c2..2749ee5 100644 --- a/include/v4l2-mediabus.h +++ b/include/v4l2-mediabus.h @@ -19,7 +19,7 @@ #ifndef __LINUX_V4L2_MEDIABUS_H #define __LINUX_V4L2_MEDIABUS_H #include <linux/types.h> -#include "videodev2.h" +#include <linux/videodev2.h> /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ enum v4l2_mbus_pixelcode { V4L2_MBUS_FMT_FIXED = 0x0001, |