From 1f72923c9940e90f06867be204bde9cef9669fbf Mon Sep 17 00:00:00 2001 From: Tao Huang Date: Mon, 29 May 2023 15:16:49 +0800 Subject: [PATCH] uapi/rk-video-format.h: include types.h usr/include/linux/rk-video-format.h:10: found __[us]{8,16,32,64} type without #include Signed-off-by: Tao Huang Change-Id: I3071683240e04039186c3a1d506835bd732c6716 --- include/uapi/linux/rk-video-format.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/uapi/linux/rk-video-format.h b/include/uapi/linux/rk-video-format.h index 7f60140d47cc..938d5adff737 100644 --- a/include/uapi/linux/rk-video-format.h +++ b/include/uapi/linux/rk-video-format.h @@ -5,6 +5,8 @@ #ifndef _UAPI_RK_VIDEO_FORMAT_H #define _UAPI_RK_VIDEO_FORMAT_H +#include + /* Four-character-code (FOURCC) */ #define v4l2_fourcc(a, b, c, d)\ ((__u32)(a) | ((__u32)(b) << 8) | ((__u32)(c) << 16) | ((__u32)(d) << 24))