hulk inclusion category: feature bugzilla: https://gitee.com/openeuler/kernel/issues/I8X87C
--------------------------------
reserve space for struct drm_fourcc.h:drm_format_info
Signed-off-by: Yuntao Liu liuyuntao12@huawei.com --- include/drm/drm_fourcc.h | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/include/drm/drm_fourcc.h b/include/drm/drm_fourcc.h index 532ae78ca747..ad9cb64cb518 100644 --- a/include/drm/drm_fourcc.h +++ b/include/drm/drm_fourcc.h @@ -24,6 +24,7 @@
#include <linux/types.h> #include <uapi/drm/drm_fourcc.h> +#include <linux/kabi.h>
/** * DRM_FORMAT_MAX_PLANES - maximum number of planes a DRM format can have @@ -141,6 +142,8 @@ struct drm_format_info {
/** @is_color_indexed: Is it a color-indexed format? */ bool is_color_indexed; + KABI_RESERVE(1) + KABI_RESERVE(2) };
/**