aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/uapi/drm/drm_mode.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/uapi/drm/drm_mode.h b/include/uapi/drm/drm_mode.h
index a2bb7161f020..54fc38c3c3f1 100644
--- a/include/uapi/drm/drm_mode.h
+++ b/include/uapi/drm/drm_mode.h
@@ -715,24 +715,24 @@ struct drm_mode_atomic {
715struct drm_format_modifier_blob { 715struct drm_format_modifier_blob {
716#define FORMAT_BLOB_CURRENT 1 716#define FORMAT_BLOB_CURRENT 1
717 /* Version of this blob format */ 717 /* Version of this blob format */
718 u32 version; 718 __u32 version;
719 719
720 /* Flags */ 720 /* Flags */
721 u32 flags; 721 __u32 flags;
722 722
723 /* Number of fourcc formats supported */ 723 /* Number of fourcc formats supported */
724 u32 count_formats; 724 __u32 count_formats;
725 725
726 /* Where in this blob the formats exist (in bytes) */ 726 /* Where in this blob the formats exist (in bytes) */
727 u32 formats_offset; 727 __u32 formats_offset;
728 728
729 /* Number of drm_format_modifiers */ 729 /* Number of drm_format_modifiers */
730 u32 count_modifiers; 730 __u32 count_modifiers;
731 731
732 /* Where in this blob the modifiers exist (in bytes) */ 732 /* Where in this blob the modifiers exist (in bytes) */
733 u32 modifiers_offset; 733 __u32 modifiers_offset;
734 734
735 /* u32 formats[] */ 735 /* __u32 formats[] */
736 /* struct drm_format_modifier modifiers[] */ 736 /* struct drm_format_modifier modifiers[] */
737}; 737};
738 738